index
:
redot-engine.git
4.3
master
Redot Engine – Multi-platform 2D and 3D game engine
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
core
/
math
/
expression.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix copyright headers referring to Godot
Spartan322
2024-10-27
1
-2
/
+2
*
Rebrand preambles to Redot
Spartan322
2024-10-13
1
-0
/
+2
*
Fix parsing of `4.` in Expression
Haoyu Qiu
2024-09-17
1
-7
/
+3
*
Add const lvalue ref to core/* container parameters
Muller-Castro
2024-02-14
1
-1
/
+1
*
Add support for Unicode identifiers in Expression class
George Marques
2023-01-21
1
-5
/
+4
*
One Copyright Update to rule them all
Rémi Verschelde
2023-01-05
1
-29
/
+29
*
Fix periods in editor strings and messages
Hugo Locurcio
2022-11-14
1
-1
/
+1
*
Fix MSVC warnings, rename shadowed variables, fix uninitialized values, chang...
bruvzg
2022-10-07
1
-27
/
+27
*
Expression built-in functions can also be considered as identifiers in subscr...
cdemirer
2022-07-04
1
-1
/
+1
*
Add a const call mode to Object, Variant and Script.
K. S. Ernest (iFire) Lee
2022-06-27
1
-17
/
+21
*
i18n: Misc fixes translation strings
Rémi Verschelde
2022-06-08
1
-1
/
+1
*
Implement exponential operator (**) to GDScript/Expressions
Yuri Roubinsky
2022-05-11
1
-14
/
+26
*
Remove VARIANT_ARG* macros
reduz
2022-03-09
1
-1
/
+1
*
Merge pull request #57620 from Haydoggo/expression-exp-fix
Rémi Verschelde
2022-02-05
1
-3
/
+1
|
\
|
*
Make parser treat all exponent literals as float
Hayden
2022-02-05
1
-3
/
+1
*
|
Cleanup and move char functions to the `char_utils.h` header.
bruvzg
2022-02-04
1
-24
/
+12
|
/
*
Added hex and bin literal support to Expression parser
Hayden Leete
2022-02-04
1
-4
/
+44
*
Add support for the escaped UTF-16 and UTF-32 Unicode characters in the scrip...
bruvzg
2022-01-30
1
-3
/
+40
*
Update copyright statements to 2022
Rémi Verschelde
2022-01-03
1
-2
/
+2
*
Merge pull request #47294 from sebastian-heinz/patch-1
Rémi Verschelde
2021-12-02
1
-0
/
+8
|
\
|
*
allow variant construction in expressions
sebastian-heinz
2021-12-02
1
-0
/
+8
*
|
Rename `remove()` to `remove_at()` when removing by index
Lightning_A
2021-11-23
1
-3
/
+3
*
|
Use the standard C `INFINITY` and `NAN` constants directly
Hugo Locurcio
2021-07-21
1
-2
/
+2
*
|
Rename Reference to RefCounted
Pedro J. Estébanez
2021-06-11
1
-1
/
+1
|
/
*
Fixes small typos and grammar correction
Anshul7sp1
2021-03-12
1
-1
/
+1
*
Update copyright statements to 2021
Rémi Verschelde
2021-01-01
1
-2
/
+2
*
Static analyzer fixes:
bruvzg
2020-12-09
1
-27
/
+0
*
Refactor variant built-in methods yet again.
reduz
2020-11-11
1
-5
/
+5
*
Create Variant built-in functions.
reduz
2020-11-10
1
-700
/
+13
*
Refactored variant constructor logic
reduz
2020-11-09
1
-2
/
+2
*
Reorganized core/ directory, it was too fatty already
reduz
2020-11-07
1
-30
/
+3
*
Refactored variant setters/getters
reduz
2020-11-07
1
-1
/
+1
*
Exposed randi_range to global funcs + renamed rand_range to randf_range
Yuri Roubinsky
2020-11-06
1
-5
/
+12
*
[Complex Test Layouts] Change `String` to use UTF-32 encoding on all platforms.
bruvzg
2020-09-03
1
-10
/
+10
*
Make all String float conversion methods be 64-bit
Aaron Franke
2020-07-27
1
-1
/
+1
*
Merge pull request #38713 from aaronfranke/string-64bit
Rémi Verschelde
2020-07-01
1
-1
/
+1
|
\
|
*
Remove 32-bit String to_int method
Aaron Franke
2020-06-03
1
-1
/
+1
*
|
Fix for Expression class: inner string can be single quoted
ntfs.hard
2020-06-02
1
-1
/
+3
|
/
*
Style: Remove unnecessary semicolons from `core`
Rémi Verschelde
2020-05-19
1
-24
/
+24
*
Style: Enforce braces around if blocks and loops
Rémi Verschelde
2020-05-14
1
-31
/
+61
*
Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks
Rémi Verschelde
2020-05-14
1
-158
/
+0
*
Port member initialization from constructor to declaration (C++11)
Rémi Verschelde
2020-05-14
1
-11
/
+0
*
Style: clang-format: Disable AllowShortCaseLabelsOnASingleLine
Rémi Verschelde
2020-05-10
1
-45
/
+135
*
Replace NULL with nullptr
lupoDharkael
2020-04-02
1
-39
/
+39
*
Fix out of bound array access caused by unassigned variable
Rafał Mikrut
2020-04-01
1
-0
/
+2
*
Fix various typos
luz.paz
2020-03-11
1
-1
/
+1
*
Merge pull request #36515 from reduz/packed-array-64-bits
Rémi Verschelde
2020-02-25
1
-5
/
+5
|
\
|
*
Variant: Added 64-bit packed arrays, renamed Variant::REAL to FLOAT.
Juan Linietsky
2020-02-25
1
-5
/
+5
*
|
Expression: Fix parsing integers as 32-bit
Rémi Verschelde
2020-02-25
1
-1
/
+1
|
/
*
Reworked signal connection system, added support for Callable and Signal obje...
Juan Linietsky
2020-02-20
1
-27
/
+27
[next]