summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript_warning.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix analyzer pushing SHADOWED_VARIABLE warning for members shadowed in ↵girdenis-p2024-11-061-2/+5
| | | | | | | | | | subclasses This fixes a bug in the analyzer where it did not push the SHADOWED_VARIABLE_BASE_CLASS warning for members shadowed by variable in subclass. It does this by comparing the class which contains the shadowed member with the class containing the variable, and pushing SHADOWED_VARIABLE only if the classes are the same. Additionally, SHADOWED_VARIABLE_BASE_CLASS can take an extra symbol which helps to specify the line for non native base class.
* GDScript: Add warning if non-`@tool` class extends `@tool` classDanil Alexeev2024-07-041-0/+3
|
* GDScript: Add `CONFUSABLE_CAPTURE_REASSIGNMENT` warningDanil Alexeev2024-06-281-0/+4
|
* GDScript: Fix `STANDALONE_EXPRESSION` warning for `preload()`Danil Alexeev2024-05-171-1/+1
|
* GDScript: Warn when enum variable has no defaultGeorge Marques2024-04-161-0/+4
| | | | | The default will always be set to `0`, so if it's not a valid value in the enum, the warning is shown.
* Merge pull request #90442 from vnen/gdscript-dont-warn-using-default-builtinRémi Verschelde2024-04-101-1/+1
|\ | | | | | | GDScript: Don't warn on unassigned for builtin-typed variables
| * GDScript: Don't warn on unassigned for builtin-typed variablesGeorge Marques2024-04-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | If the type of a variable is a built-in Variant type, then it will automatically be assigned a default value based on the type. This means that the explicit initialization may be unnecessary. Thus this commit removes the warning in such case. This also changes the meaning of the unassigned warning to happen when the variable is used before being assigned, not when it has zero assignments.
* | Merge pull request #84043 from dalexeev/gds-fix-unsafe-cast-warningRémi Verschelde2024-04-091-1/+1
|\ \ | |/ |/| | | GDScript: Fix `UNSAFE_CAST` warning
| * GDScript: Fix `UNSAFE_CAST` warningDanil Alexeev2023-10-271-1/+1
| |
* | GDScript: Fix `@warning_ignore` annotation issuesDanil Alexeev2024-03-121-18/+18
|/
* GDScript: Fix `UNSAFE_CALL_ARGUMENT` warning for `Variant` constructorsDanil Alexeev2023-09-301-2/+2
|
* Merge pull request #75988 from dalexeev/gds-unsafe-call-argumentYuri Sizov2023-09-271-1/+1
|\ | | | | | | GDScript: Improve call analysis
| * GDScript: Improve call analysisDanil Alexeev2023-09-211-1/+1
| | | | | | | | | | | | * Add missing `UNSAFE_CALL_ARGUMENT` warning. * Fix `Object` constructor. * Display an error for non-existent static methods.
* | GDScript: Add `INFERRED_DECLARATION` warningDanil Alexeev2023-09-221-0/+4
|/
* Remove REDUNDANT_FOR_VARIABLE_TYPEryanabx2023-09-121-9/+0
| | | | Remove REDUNDANT_FOR_VARIABLE_TYPE
* Add "untyped_declaration" warningryanabx2023-09-111-0/+7
|
* GDScript: Add static typing for `for` loop variableDanil Alexeev2023-08-171-0/+9
|
* GDScript: Fix bug with identifier shadowed below in current scopeDanil Alexeev2023-07-261-0/+8
|
* GDScript: Reorganize and unify warningsDanil Alexeev2023-04-281-130/+89
|
* Add support for static variables in GDScriptGeorge Marques2023-04-271-0/+4
| | | | | | | | | | 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.
* Fix mistakes in documentation and GDScript errorsVolTer2023-04-101-1/+1
|
* GDScript: Add warnings that are set to error by defaultGeorge Marques2023-02-021-9/+22
| | | | | | | | | | | | | | | | | | | | | | | - 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.
* Revert "GDScript: Add warnings that are set to error by default"Rémi Verschelde2023-02-011-22/+9
| | | | | | | | | 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-9/+22
| | | | | | | | | | | | | | | | | | | | | | | - 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 #72206 from vnen/gdscript-allow-void-return-shorthandRémi Verschelde2023-01-311-0/+5
|\ | | | | | | GDScript: Allow void functions to return calls to other void functions
| * GDScript: Allow void functions to return calls to other void functionsGeorge Marques2023-01-311-0/+5
| |
* | Merge pull request #57520 from jordigcs/gd-rename-mapRémi Verschelde2023-01-311-0/+7
|\ \ | |/ |/| | | Add hint for identifiers renamed from 3.x to 4.0
| * Add hint for identifiers renamed since Godot 3jordi2023-01-241-0/+7
| |
* | GDScript: Fix constant conversionsDmitrii Maganov2023-01-291-2/+7
|/
* Add support for Unicode identifiers in GDScriptGeorge Marques2023-01-211-0/+5
| | | | | | This is using an adapted version of UAX#31 to not rely on the ICU database (which isn't available in builds without TextServerAdvanced). It allows most characters used in diverse scripts but not everything.
* 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: Make using return of void function an errorGeorge Marques2022-12-301-5/+0
| | | | | Remove the `VOID_ASSIGNMENT` warning since those cases will be errors now.
* GDScript: Don't warn about RETURN_VALUE_DISCARDED by defaultRémi Verschelde2022-11-221-0/+4
| | | | | | | | This happens too often with normal usage of the API. The warning can still be useful to find actual bugs where discarding the return value wasn't intentional, but this should stay enabled manually, at least until we either improve the API to remove false positives, or improve the warning (e.g. to only warn about unused return value on const functions).
* change RETURN_VALUE_DISCARDED GDScript warn textsouplamp2022-11-211-1/+1
| | | | changed RETURN_VALUE_DISCARDED GDscript warning text to mention how the return value of a function is discarded; update GDScript parser warning test to include new warning text.
* Add STATIC_CALLED_ON_INSTANCE warning to highlightclayjohn2022-10-141-0/+5
| | | | when static functions are called directly from objects
* Add enum values (Ignore, Warn, Error) to GDScript warningsjordi2022-04-061-0/+16
|
* GDScript: Consolidate behavior for assigning enum typesGeorge Marques2022-02-031-0/+4
| | | | | | | | | | This makes sure that assigning values to enum-typed variables are consistent. Same enum is always valid, different enum is always invalid (without casting) and assigning `int` creates a warning if there is no casting. There are new test cases to ensure this behavior doesn't break in the future.
* Merge pull request #56483 from vnen/gdscript-warning-annotationRémi Verschelde2022-01-051-1/+1
|\ | | | | Add annotation to ignore warnings
| * GDScript: Add annotation to ignore warningsGeorge Marques2022-01-041-1/+1
| |
* | Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
|/ | | | Happy new year to the wonderful Godot community!
* Allow using built-in names for variables, push warnings insteadYuri Roubinsky2021-11-131-0/+5
|
* Fix error on parsing statement-less GDScript files,ThreeRhinosInAnElephantCostume2021-09-111-0/+4
| | | | | add an empty file warning, add relevant tests.
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* Reorganized core/ directory, it was too fatty alreadyreduz2020-11-071-1/+1
| | | | | | -Removed FuncRef, since Callable makes it obsolete -Removed int_types.h as its obsolete in c++11+ -Changed color names code
* Add warning checks in GDScript analyzerGeorge Marques2020-07-201-28/+37
| | | | Reenable checking those when validating code.
* New GDScript tokenizer and parserGeorge Marques2020-07-201-0/+201
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.