#pragma once #include #include #include #include #include namespace mbgl { namespace style { namespace expression { class ArrayAssertion : public Expression { public: ArrayAssertion(type::Array type_, std::unique_ptr input_) : Expression(type_), input(std::move(input_)) {} static ParseResult parse(const mbgl::style::conversion::Convertible& value, ParsingContext& ctx); EvaluationResult evaluate(const EvaluationContext& params) const override; void eachChild(const std::function& visit) const override; bool operator==(const Expression& e) const override { if (auto rhs = dynamic_cast(&e)) { return getType() == rhs->getType() && *input == *(rhs->input); } return false; } std::vector> possibleOutputs() const override { return input->possibleOutputs(); } mbgl::Value serialize() const override; std::string getOperator() const override { return "array"; } private: std::unique_ptr input; }; } // namespace expression } // namespace style } // namespace mbgl