summaryrefslogtreecommitdiffstats
path: root/core/math/expression.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add -Wshadow=local to warnings and fix reported issues.marxin2019-02-201-31/+31
| | | | Fixes #25316.
* Update copyright statements to 2019Rémi Verschelde2019-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Moved member variables to initializer listWilson E. Alvarez2018-12-111-7/+7
|
* Error running Expression.execute after parse errorsantouits2018-10-281-0/+4
| | | | There happens a segmentation fault when you use Expression.parse() and you don't check for errors and then run Expression.execute(). So we check if there was a parse error in the execute method now.
* Add support for '.[0-9]' numbers in ExpressionRémi Verschelde2018-10-011-14/+21
| | | | Fixes #21874, supersedes #22065.
* Make core/ includes absolute, remove subfolders from include pathRémi Verschelde2018-09-121-7/+7
| | | | | | This allows more consistency in the manner we include core headers, where previously there would be a mix of absolute, relative and include path-dependent includes.
* Add missing copyright headersRémi Verschelde2018-08-291-0/+30
|
* Make some debug prints verbose-only, remove othersRémi Verschelde2018-08-241-4/+1
|
* Fixed bugs in expression classDaniel Eliasinski2018-08-231-2/+2
|
* Fix clang compile errorMarcelo Fernandez2018-08-091-1/+1
|
* Ability to pass custom variables to expression.Juan Linietsky2018-08-081-7/+23
|
* -Add Expression class, used to evaluate expressionsJuan Linietsky2018-08-081-0/+2120
-Added expression evaluation to EditorSpinSlider, fixes #20813, fixes #18932