summaryrefslogtreecommitdiff
path: root/include/mbgl/style/expression/let.hpp
Commit message (Collapse)AuthorAgeFilesLines
* [core] Fix performance-no-automatic-move (bonus)Thiago Marcos P. Santos2020-04-171-2/+2
| | | | | | As reported by clang-tidy-10. We don't run clang-tidy-10 yet. We should probably consider moving the bots at some point so errors like this won't return.
* [core] Fix performance-unnecessary-value-param errors in header filesThiago Marcos P. Santos2020-04-171-5/+2
| | | | As reported by clang-tidy-8.
* [core] Replace expressions RTTI with enums + static castBruno de Oliveira Abinader2018-07-241-4/+6
|
* Fix style parsing bug for constant expressions (#11606)Anand Thakker2018-04-091-0/+3
| | | | | | | | | | | | | | * Fix style parsing bug for constant expressions Closes #10849 * Ignore tests for unported GL JS change Refs https://github.com/mapbox/mapbox-gl-js/pull/6429 * Fuller fix * Update mapbox-gl-js
* [core] Implement Expression::serialize()Chris Loer2018-02-281-0/+4
| | | | | | | | Issue #10714 - Each expression stores its operator as a string, and default serialization is [operator, serialize(child1), ...] - Custom implementations of `serialize` for Expression types that don't follow the pattern - expression::Value -> mbgl::Value converter - node_expression bindings to expose `serialize`
* [core, ios, macos, android] Add data-driven-styling support for `text-font`John Firebaugh2018-01-101-1/+5
|
* Implement Expressions (#9439)Anand Thakker2017-11-081-0/+72
Ports https://github.com/mapbox/mapbox-gl-js/pull/4777 (and its several follow-ups)