summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript_analyzer.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
|
* Rebrand preambles to RedotSpartan3222024-10-131-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit e8542b06acca3c1bdeee4b528411771f0819f084) Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* GDScript: Fix too many calls to 'remove_parser'rune-scape2024-08-031-3/+3
| | | | | +fix excessive memory allocations when 'load'ing many dependant scripts +fix excessive calls to vformat
* GDScript: Fix common mismatched external parser errorsrune-scape2024-07-311-1/+18
|
* Revert "GDScript: Fix common mismatched external parser errors"Rémi Verschelde2024-07-251-15/+0
| | | | | | | This reverts commit c75225ffb26eb69d0caca930732dce63af6c6707. This caused a crashing regression for multiple users: https://github.com/godotengine/godot/pull/94617#issuecomment-2247868580
* GDScript: Fix common mismatched external parser errorsrune-scape2024-07-231-0/+15
|
* GDScript: invalidate GDScriptParserRef when reloadingrune-scape2024-04-181-3/+0
|
* Prefer identifiers annotated type if assigned type is incompatible to itHolonProduction2024-01-171-0/+1
|
* Add const lvalue ref to container parametersMuller-Castro2024-01-051-1/+1
|
* GDScript: Fix lambda resolution with cyclic referencesDanil Alexeev2023-08-251-1/+3
|
* Merge pull request #75620 from ↵Yuri Sizov2023-07-251-1/+1
|\ | | | | | | | | | | jpcerrone/fix_shadow_warnings_not_going_away_after_ignoring Fix for not being able to ignore shadowing warnings on class scope
| * Fix for not being able to ignore shadowing warnings on class scopejpcerrone2023-07-241-1/+1
| |
* | Script editor: Show depended script errorsrune-scape2023-07-241-0/+1
|/
* Merge pull request #77324 from anvilfolk/oh-no-its-virtualRémi Verschelde2023-06-151-2/+2
|\ | | | | | | GDScript: add errors when calling unimplemented virtual functions
| * GDScript: add errors when calling unimplemented virtual functionsocean (they/them)2023-06-151-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | This PR does a small refactor of how method flags are handled in the GDScript analyzer. This way, it adds support for the analyzer to use any of MethodInfo's flags, where previously it could only use METHOD_FLAG_STATIC and METHOD_FLAG_VARARG. As a side-effect, this also normalizes behavior between editor and release templates, which fixes #76938. The tests added also brought a different issue to light, where using `super()` appears to generate a return variable discarded on calling super's _init(), which doesn't have a return value. This should be tackled in a different PR, which will have to change the output of this PR's tests.
* | Style: Harmonize header includes in modulesRémi Verschelde2023-06-151-2/+3
|/ | | | | | | | | | | | | | | | | | | | This applies our existing style guide, and adds a new rule to that style guide for modular components such as platform ports and modules: Includes from the platform port or module ("local" includes) should be listed first in their own block using relative paths, before Godot's "core" includes which use "absolute" (project folder relative) paths, and finally thirdparty includes. Includes in `#ifdef`s come after their relevant section, i.e. the overall structure is: - Local includes * Conditional local includes - Core includes * Conditional core includes - Thirdparty includes * Conditional thirdparty includes
* Add support for static variables in GDScriptGeorge Marques2023-04-271-0/+1
| | | | | | | | | | Which allows editable data associated with a particular class instead of the instance. Scripts with static variables are kept in memory indefinitely unless the `@static_unload` annotation is used or the `static_unload()` method is called on the GDScript. If the custom function `_static_init()` exists it will be called when the class is loaded, after the static variables are set.
* GDScript: Fix missing warning for shadowing of built-in typesDmitrii Maganov2023-03-131-1/+1
|
* Merge pull request #73590 from vnen/gdscript-global-scope-enumsRémi Verschelde2023-02-201-1/+1
|\ | | | | | | Make global scope enums accessible as types in GDScript
| * Make global scope enums accessible as types in GDScriptGeorge Marques2023-02-191-1/+1
| | | | | | | | | | | | Add functions to CoreConstant so enums can be properly deduced. Also add the enums in release builds to make consistent with ClassDB enums and avoid differences in script compilation between debug and release.
* | GDScript: Rework type checkDmitrii Maganov2023-02-171-0/+1
|/
* Clean up ProjectConverter3To4 architecture, move renames map to separate fileRémi Verschelde2023-02-101-11/+0
| | | | | | | | | | | This allows properly limiting what features depend on the RegEx module (doing the actual conversion) and what features only require the renames data (GDScript suggestions). Also better excludes the conversion command line options when actually disabling deprecated code. Fixes #73029.
* Merge pull request #72608 from vnen/gdscript-warning-default-errorYuri Sizov2023-02-051-1/+1
|\ | | | | GDScript: Add warnings that are set to error by default (take 2)
| * GDScript: Add warnings that are set to error by defaultGeorge Marques2023-02-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Adds a list of default levels for all warning so they can be set individually. - Add warnings set by default to error for: - Using `get_node()` without `@onready`. - Using `@onready` together with `@export`. - Inferring a static type with a Variant value. - Overriding a native engine method. - Adjust how annotations to ignore warnings are treated so they also apply to method parameters. - Clean up a bit how ignored warnings are set. There were two sets but only one was actually being used. - Set all warnings to the `WARN` level for tests, so they they can be properly tested. - Fix enum types in native methods signatures being set to `int`. - Fix native enums being treated as Dictionary by mistake. - Make name of native enum types use the class they are defined in, not the direct super class of the script. This ensures they are always equal even when coming from different sources. - Fix error for signature mismatch that was only showing the first default argument as having a default. Now it shows for all.
* | GDScript: Improve usability of setter chainsGeorge Marques2023-02-021-1/+1
|/ | | | | | | | | - Consider PackedArrays non-shared since they are copied on C++/script boundaries. - Add error messages in the analyzer when assigning to read-only properties. - Add specific error message at runtime when assignment fails because the property is read-only.
* Revert "GDScript: Add warnings that are set to error by default"Rémi Verschelde2023-02-011-1/+1
| | | | | | | | | This reverts commit a166833bfa23a21a7bff196a85a20b014e7c1396. This caused multiple regressions. Needs to be redone with more testing before merge. Fixes #72501.
* GDScript: Add warnings that are set to error by defaultGeorge Marques2023-02-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | - Adds a list of default levels for all warning so they can be set individually. - Add warnings set by default to error for: - Using `get_node()` without `@onready`. - Using `@onready` together with `@export`. - Inferring a static type with a Variant value. - Overriding a native engine method. - Adjust how annotations to ignore warnings are treated so they also apply to method parameters. - Clean up a bit how ignored warnings are set. There were two sets but only one was actually being used. - Set all warnings to the `WARN` level for tests, so they they can be properly tested. - Fix enum types in native methods signatures being set to `int`. - Fix native enums being treated as Dictionary by mistake. - Make name of native enum types use the class they are defined in, not the direct super class of the script. This ensures they are always equal even when coming from different sources. - Fix error for signature mismatch that was only showing the first default argument as having a default. Now it shows for all.
* Merge pull request #57520 from jordigcs/gd-rename-mapRémi Verschelde2023-01-311-0/+11
|\ | | | | | | Add hint for identifiers renamed from 3.x to 4.0
| * Add hint for identifiers renamed since Godot 3jordi2023-01-241-0/+11
| |
* | GDScript: Fix issues with typed arraysDmitrii Maganov2023-01-311-4/+9
| |
* | GDScript: Fix constant conversionsDmitrii Maganov2023-01-291-2/+3
| |
* | Merge pull request #71120 from jordigcs/ternaryGeorge Marques2023-01-251-1/+1
|\ \ | |/ |/| Closes https://github.com/godotengine/godot/issues/71065
| * Allow standalone ternary expressionsjordi2023-01-191-1/+1
| |
* | GDScript: Fix some issues with assignments that involve untyped thingsDmitrii Maganov2023-01-121-0/+1
| |
* | GDScript: Fix getting type from PropertyInfo for Variant argumentsDmitrii Maganov2023-01-121-1/+1
| |
* | Fix GDScript base and outer classes, signals and functions lookup orderAdam Scott2023-01-091-0/+1
| | | | | | | | | | | | | | - Add outer class lookup test - Add signal lookup test Co-authored-by: Dmitrii Maganov <vonagam@gmail.com>
* | Merge pull request #71051 from vonagam/consts-are-deep-startRémi Verschelde2023-01-091-2/+2
|\ \ | | | | | | GDScript: Begin making constants deep, not shallow or flat
| * | GDScript: Begin making constants deep, not shallow or flatDmitrii Maganov2023-01-081-2/+2
| |/
* / Assorted enum and native type fixesocean (they/them)2023-01-091-1/+1
|/
* GDScript: Fix typing of lambda functionsDmitrii Maganov2023-01-061-2/+2
|
* Unify typing of variables, constants and parameters in GDScriptDmitrii Maganov2023-01-061-3/+4
|
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* GDScript: Allow out of order member resolutionrune-scape2022-12-141-8/+11
|
* Fix constant base typing in extended GDScript classAdam Scott2022-12-101-0/+2
|
* Fix ability to overload "script" variableocean (they/them)2022-11-171-1/+1
|
* Implement RETURN_VALUE_DISCARDED warning in GDscriptclayjohn2022-10-131-1/+1
|
* Add a new HashSet templatereduz2022-05-201-1/+1
| | | | | * Intended to replace RBSet in most cases. * Optimized for iteration speed
* Replace most uses of Map by HashMapreduz2022-05-161-1/+1
| | | | | | | | | | | | * Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated!
* GDScript: Allow using self in lambdasGeorge Marques2022-04-241-1/+2
|
* GDScript: Check if method signature matches the parentGeorge Marques2022-03-061-1/+1
| | | | | | | | | | | | | | To guarantee polymorphism, a method signature must be compatible with the parent. This checks if: 1. Return type is the same. 2. The subclass method takes at least the same amount of parameters. 3. The matching parameters have the same type. 4. If the subclass takes more parameters, all of the extra ones have a default value. 5. If the superclass has default values, so must have the subclass. There's a few test cases to ensure this holds up.