summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript_analyzer.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* | GDScript: Fix lambda resolution with cyclic referencesDanil Alexeev2023-08-251-30/+63
|/
* GDScript: Add static typing for `for` loop variableDanil Alexeev2023-08-171-1/+33
* Merge pull request #78552 from dalexeev/gds-check-get-node-in-static-funcRémi Verschelde2023-08-171-6/+15
|\
| * GDScript: Check `get_node()` shorthand in static functionsDanil Alexeev2023-08-091-6/+15
* | GDScript: Fix "Identifier not found" error when accessing inner class from in...Danil Alexeev2023-08-111-0/+3
|/
* GDScript: Fix bug with identifier shadowed below in current scopeDanil Alexeev2023-07-261-0/+19
* Merge pull request #75620 from jpcerrone/fix_shadow_warnings_not_going_away_a...Yuri Sizov2023-07-251-24/+23
|\
| * Fix for not being able to ignore shadowing warnings on class scopejpcerrone2023-07-241-24/+23
* | Script editor: Show depended script errorsrune-scape2023-07-241-0/+4
|/
* GDScript: fix regression when checking for virtual function implementation.ocean (they/them)2023-06-211-10/+0
* Make container element type comparison safeYuri Sizov2023-06-201-1/+1
* Merge pull request #73540 from mashumafi/fix-typed-array-addRémi Verschelde2023-06-201-3/+22
|\
| * Fix: Typed arrays aren't working with +mashumafi2023-02-221-3/+22
* | Merge pull request #77129 from dalexeev/gds-fix-static-var-bugs-part-1Rémi Verschelde2023-06-191-2/+8
|\ \
| * | GDScript: Fix some bugs with static variables and functionsDanil Alexeev2023-06-161-2/+8
* | | Merge pull request #74741 from vnen/variant-not-for-everyoneRémi Verschelde2023-06-181-0/+11
|\ \ \
| * | | GDScript: Allow boolean operators between any typesGeorge Marques2023-03-101-0/+11
* | | | Merge pull request #73657 from mashumafi/callable-ctorRémi Verschelde2023-06-181-1/+11
|\ \ \ \ | |_|/ / |/| | |
| * | | Fix: Get constructor as Callablemashumafi2023-02-201-1/+11
* | | | Merge pull request #77324 from anvilfolk/oh-no-its-virtualRémi Verschelde2023-06-151-30/+36
|\ \ \ \
| * | | | GDScript: add errors when calling unimplemented virtual functionsocean (they/them)2023-06-151-30/+36
* | | | | Style: Harmonize header includes in modulesRémi Verschelde2023-06-151-2/+3
|/ / / /
* | | | Merge pull request #77351 from anvilfolk/super-discardRémi Verschelde2023-06-151-2/+3
|\ \ \ \
| * | | | GDScript: do not warn of return value discarded for super() inside _init()ocean (they/them)2023-05-221-2/+3
* | | | | Merge pull request #75419 from vonagam/fix-super-classes-in-array-literalsRémi Verschelde2023-06-141-0/+4
|\ \ \ \ \
| * | | | | GDScript: Allow elements of a parent class in a typed array literalDmitrii Maganov2023-03-281-0/+4
* | | | | | GDScript: Fix calling static func from non-static is allowedDanil Alexeev2023-05-171-0/+4
| |/ / / / |/| | | |
* | | | | GDScript: Fix `validate_call_arg()` for unresolved datatypeDanil Alexeev2023-05-151-3/+5
* | | | | GDScript: Fix warning ignoring for member variablesDanil Alexeev2023-05-121-2/+3
* | | | | Merge pull request #76412 from dalexeev/gds-reorganize-warningsRémi Verschelde2023-04-281-5/+9
|\ \ \ \ \
| * | | | | GDScript: Reorganize and unify warningsDanil Alexeev2023-04-281-5/+9
* | | | | | Merge pull request #75014 from vonagam/assert-literal-falseRémi Verschelde2023-04-281-1/+1
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | GDScript: Allow usage of literal false in assert without a warningDmitrii Maganov2023-03-171-1/+1
| | |_|/ / | |/| | |
* | | | | Add support for static variables in GDScriptGeorge Marques2023-04-271-16/+69
* | | | | Merge pull request #75691 from dalexeev/gds-fix-signature-generationYuri Sizov2023-04-141-1/+2
|\ \ \ \ \
| * | | | | GDScript: Misc fixes and improvements for signature generationDanil Alexeev2023-04-071-1/+2
| | |/ / / | |/| | |
* / | | | GDScript: Add missing member type check when resolving `extends`Danil Alexeev2023-04-101-1/+21
|/ / / /
* | | | Merge pull request #74949 from dalexeev/gds-fix-await-warningYuri Sizov2023-03-201-1/+1
|\ \ \ \
| * | | | GDScript: Fix false positive `REDUNDANT_AWAIT` warningDanil Alexeev2023-03-161-1/+1
| |/ / /
* | | | Merge pull request #74844 from vonagam/change-class-extends-parsingYuri Sizov2023-03-201-16/+16
|\ \ \ \
| * | | | GDScript: Change parser representation of class extendsDmitrii Maganov2023-03-131-16/+16
| |/ / /
* / / / GDScript: Fix missing warning for shadowing of built-in typesDmitrii Maganov2023-03-131-13/+15
|/ / /
* | | GDScript: Fix wrong unsafety mark for binary operatorDmitrii Maganov2023-02-261-1/+1
* | | GDScript: Fix range regressionDmitrii Maganov2023-02-241-12/+23
* | | GDScript: Fix usage of enum value as range argumentDmitrii Maganov2023-02-231-14/+10
* | | GDScript: Fix error message for unfound typeDmitrii Maganov2023-02-211-1/+1
* | | Merge pull request #73693 from vnen/gdscript-fix-script-signature-checkRémi Verschelde2023-02-211-0/+1
|\ \ \
| * | | GDScript: Fix override signature check of script inheritanceGeorge Marques2023-02-211-0/+1
| |/ /
* / / GDScript: Fix crash when autoload script can't be foundGeorge Marques2023-02-211-0/+4
|/ /
* | Merge pull request #73590 from vnen/gdscript-global-scope-enumsRémi Verschelde2023-02-201-16/+113
|\ \