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
/
modules
/
gdscript
/
gdscript_parser.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Add custom icons to script classes.
Will Nations
2018-08-14
1
-0
/
+26
*
Remove usage console spam
Chaosus
2018-08-13
1
-1
/
+0
*
Added system for GDScript warnings
George Marques
2018-08-10
1
-32
/
+397
*
Allow some non-integer built-in constants in gdscript
Bernhard Liebl
2018-07-31
1
-2
/
+2
*
GDScript: Fix parse error in string formatting
George Marques
2018-07-26
1
-1
/
+1
*
GDScript: Add type inference syntax for function arguments
George Marques
2018-07-25
1
-11
/
+19
*
GDScript: Fix type detection for String formatting operator
George Marques
2018-07-25
1
-0
/
+3
*
GDScript: Allow accessing constants of outer classes
George Marques
2018-07-25
1
-0
/
+3
*
GDScript: Fix bogus error when a cursor token is found on class
George Marques
2018-07-25
1
-0
/
+3
*
GDScript: Fix mismatching between export hint and type hint
George Marques
2018-07-25
1
-0
/
+2
*
GDScript: Allow inherited method to add optional arguments
George Marques
2018-07-25
1
-3
/
+30
*
GDScript: Look up local scope first for detecting type
George Marques
2018-07-25
1
-22
/
+20
*
Reduce unnecessary COW on Vector by make writing explicit
Hein-Pieter van Braam
2018-07-26
1
-16
/
+16
*
Rewrite code completion
George Marques
2018-07-20
1
-17
/
+22
*
Add ability to infer variable type from assigned value
George Marques
2018-07-20
1
-3
/
+46
*
Add editor highlight for type-safe lines
George Marques
2018-07-20
1
-99
/
+175
*
Fix line number detection in some parser nodes
George Marques
2018-07-20
1
-4
/
+14
*
Use type information to enable GDScript introspection
George Marques
2018-07-20
1
-0
/
+50
*
Add static type checks in the parser
George Marques
2018-07-20
1
-203
/
+2800
*
Store type hint of declared identifiers
George Marques
2018-07-20
1
-16
/
+33
*
Move inheritance resolution to the parser
George Marques
2018-07-20
1
-4
/
+237
*
Add typing syntax
George Marques
2018-07-20
1
-2
/
+87
*
Global class names (and GDScript support for it)
Juan Linietsky
2018-07-15
1
-0
/
+27
*
Add proper type information to array property
Bojidar Marinov
2018-06-18
1
-1
/
+1
*
New sync keywords in GDScript, NativeScript, Mono
Fabio Alessandrelli
2018-05-29
1
-2
/
+33
*
Refactor RPCMode enum and checks
Fabio Alessandrelli
2018-05-29
1
-7
/
+7
*
Revert "RPCMode refactor, more sync modes"
Max Hilbrunner
2018-05-29
1
-40
/
+9
*
Merge pull request #19021 from Faless/rpc_sync_fix
Max Hilbrunner
2018-05-29
1
-9
/
+40
|
\
|
*
New sync keywords in GDScript, NativeScript, Mono
Fabio Alessandrelli
2018-05-26
1
-2
/
+33
|
*
Refactor RPCMode enum and checks
Fabio Alessandrelli
2018-05-26
1
-7
/
+7
*
|
Enable singletons to be recognized as constant expressions
George Marques
2018-05-28
1
-0
/
+8
|
/
*
Merge pull request #16418 from bojidar-bg/15961-gdscript-array-export
Rémi Verschelde
2018-05-03
1
-30
/
+28
|
\
|
*
Allow exporting arrays of resources in GDScript
Bojidar Marinov
2018-02-05
1
-30
/
+28
*
|
Change ".." punctuation for "..." in editor strings (#16507)
Hugo Locurcio
2018-04-22
1
-6
/
+6
*
|
fix enum from preloaded script in export
x1212
2018-03-04
1
-4
/
+7
*
|
Fix typos with codespell
luz.paz
2018-02-21
1
-2
/
+2
*
|
Merge pull request #15852 from poke1024/color_hsv
Rémi Verschelde
2018-02-19
1
-7
/
+36
|
\
\
|
*
|
Add Color.from_hsv()
Bernhard Liebl
2018-01-18
1
-7
/
+36
*
|
|
Merge pull request #15933 from x1212/fix_preload_in_exports
Rémi Verschelde
2018-02-19
1
-25
/
+4
|
\
\
\
|
*
|
|
fix spurious error messages during autocomplete and validate
x1212
2018-02-14
1
-25
/
+4
*
|
|
|
Merge pull request #16173 from vnen/gdscript-arguments
Rémi Verschelde
2018-02-19
1
-2
/
+2
|
\
\
\
\
|
|
_
|
_
|
/
|
/
|
|
|
|
*
|
|
Add argument count check for some GDScript functions
George Marques
2018-01-30
1
-2
/
+2
|
|
/
/
*
/
/
GDScriptParser: Remove debug prints.
Andreas Haas
2018-02-02
1
-2
/
+0
|
/
/
*
|
GDScript: always call ResourceLoader::load() in non-completion mode
Bernhard Liebl
2018-01-21
1
-1
/
+1
*
|
Suppress errors on autocompletion for preload()
Bernhard Liebl
2018-01-18
1
-1
/
+1
*
|
Fix typos in code and docs with codespell
Rémi Verschelde
2018-01-18
1
-2
/
+2
|
/
*
Add missing copyright headers and fix formatting
Rémi Verschelde
2018-01-05
1
-0
/
+1
*
Update copyright statements to 2018
Rémi Verschelde
2018-01-01
1
-2
/
+2
*
Merge pull request #12845 from remorse107/Array-Dictionary-Fix
Rémi Verschelde
2017-12-16
1
-9
/
+33
|
\
|
*
Fix issue #11400. Fixes issue with arrays and dictionary acting as static obj...
Robert Morse
2017-11-17
1
-9
/
+33
[prev]
[next]