summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript_analyzer.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #40673 from ThakeeNathees/gdscript-op-eval-validationGeorge Marques2020-08-081-1/+13
|\ | | | | GDScript operator evaluation validation bug fix
| * GDScript operator evaluation validation bug fixThakee Nathees2020-07-241-1/+13
| | | | | | | | Fix: #40665
* | Merge pull request #40951 from bruvzg/gds_cleanupGeorge Marques2020-08-081-0/+4
|\ \ | | | | | | [GDScript] Add static HashMap cleanup.
| * | [GDScript] Add static HashMap cleanup.bruvzg2020-08-011-0/+4
| | |
* | | GDScript: unsafe arithmetic assignment bug fixThakee Nathees2020-08-061-15/+17
| | | | | | | | | | | | Fix: #41051
* | | Merge pull request #40690 from ↵George Marques2020-08-031-5/+53
|\ \ \ | | | | | | | | | | | | | | | | ThakeeNathees/arithmetic-assign-type-check-bug-fix GDScript arithmetic assignment type check bug fix
| * | | GDScript arithmetic assignment type check bug fixedThakee Nathees2020-07-261-5/+53
| | |/ | |/| | | | | | | Fix: #40686
* | | Fixed tiny grammar issues in error messagesunknown2020-08-031-2/+2
| |/ |/|
* | GDScript: Fix crash caused by inconsistent get_memberLyuma2020-07-291-1/+1
| |
* | GDScript: Fix crash on 'await' completionGeorge Marques2020-07-271-0/+6
| |
* | GDScript: "Object" datatype changed from BUILTIN to NATIVEThakee Nathees2020-07-261-0/+10
|/ | | | Fix: #40656
* Wrap up GDScript 2.0 base implementationGeorge Marques2020-07-221-121/+284
|
* Reintroduce code completionGeorge Marques2020-07-201-0/+14
|
* Added support for enums to be used as types in GDScriptGeorge Marques2020-07-201-89/+214
|
* Add warning checks in GDScript analyzerGeorge Marques2020-07-201-43/+301
| | | | Reenable checking those when validating code.
* Add new GDScript type checkerGeorge Marques2020-07-201-99/+2318
|
* New GDScript tokenizer and parserGeorge Marques2020-07-201-0/+283
Sometimes to fix something you have to break it first. This get GDScript mostly working with the new tokenizer and parser but a lot of things isn't working yet. It compiles and it's usable, and that should be enough for now. Don't worry: other huge commits will come after this.