Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-04-27 | GDScript: Don't fail when freed object is return | George Marques | |
This is check is a bit too eager. The user should be able to handle the return value even if it's a freed object. (cherry picked from commit abbdf806435aad401f2a7b6ce09838c8e4d5cbcb) | |||
2023-04-27 | GDScript: Use default path in test generator if not provided | George Marques | |
Since it's almost always used with the same path, assume it is running from the Godot source root. (cherry picked from commit 221deb1cc130d176c499ebc67db83e7018eafd55) | |||
2023-04-24 | GDScript: Add missing member type check when resolving `extends` | Danil Alexeev | |
(cherry picked from commit 66279b98b6c3418232003cc8d6c2e52af7a62ac4) | |||
2023-03-30 | GDScript: Fix false positive `REDUNDANT_AWAIT` warning | Danil Alexeev | |
(cherry picked from commit c0eeb32e38fbd4f582f7a2726e6535614e507205) | |||
2023-03-13 | Fix GDScript code style regarding colon | Danil Alexeev | |
(cherry picked from commit ea5fd3d732a85029e8372425904971ad26153ff1) | |||
2023-02-28 | Minor typo and docs URL fixes | Rémi Verschelde | |
2023-02-26 | Merge pull request #73915 from vonagam/fix-conversions-from-native-member | Rémi Verschelde | |
GDScript: Fix conversions from native members accessed by identifier | |||
2023-02-26 | Merge pull request #73899 from vnen/gdscript-init-defaults-beforehand | Rémi Verschelde | |
GDScript: Initialize all defaults beforehand in implicit constructor | |||
2023-02-25 | Revert "GDScript: Fix groups and categories been seen as members" | George Marques | |
This reverts commit 6f2a8434c675b3df2aceca4e5200aaf799eeb2bd. The commit introduces a bug where it creates spurious entries for member information. | |||
2023-02-25 | GDScript: Fix conversions from native members accessed by identifier | Dmitrii Maganov | |
2023-02-24 | GDScript: Initialize all defaults beforehand in implicit constructor | George Marques | |
Set all the default values for typed variables before actually trying to initialize them, including `@onready` ones. This ensures that if validated calls are being used there will be a value of the correct type, even if the resolution is done out of order or deferred because of `@onready`. | |||
2023-02-24 | GDScript: Don't use validated call for vararg methods | George Marques | |
Since they may have runtime type validation, we cannot use the validated call. | |||
2023-02-24 | Fixup GDScript test using non-deterministic ids | Rémi Verschelde | |
Follow-up to #73870. | |||
2023-02-24 | Merge pull request #73870 from vnen/gdscript-dont-reference-group-properties | Rémi Verschelde | |
GDScript: Fix groups and categories been seen as members | |||
2023-02-24 | GDScript: Fix groups and categories been seen as members | George Marques | |
2023-02-24 | GDScript: Fix range regression | Dmitrii Maganov | |
2023-02-23 | Merge pull request #73798 from vonagam/fix-bad-continue-in-lambda | Rémi Verschelde | |
GDScript: Fix parsing unexpected break/continue in lambda | |||
2023-02-23 | GDScript: Fix parsing unexpected break/continue in lambda | Dmitrii Maganov | |
2023-02-23 | GDScript: Fix usage of enum value as range argument | Dmitrii Maganov | |
2023-02-21 | Merge pull request #73709 from vonagam/fix-error-message-unfound-type | Rémi Verschelde | |
GDScript: Fix error message for unfound type | |||
2023-02-21 | Merge pull request #73705 from anvilfolk/doublewoopsie | Rémi Verschelde | |
Added check for null objects in gdscript typed assign. | |||
2023-02-21 | GDScript: Fix error message for unfound type | Dmitrii Maganov | |
2023-02-21 | Added check for null objects in gdscript typed assign. | ocean (they/them) | |
2023-02-21 | GDScript: Fix override signature check of script inheritance | George Marques | |
Avoid treating the super class as a meta type for signature check, since it is looking at the instance level for that. | |||
2023-02-20 | Add test for const class references | mashumafi | |
2023-02-20 | Merge pull request #73590 from vnen/gdscript-global-scope-enums | Rémi Verschelde | |
Make global scope enums accessible as types in GDScript | |||
2023-02-20 | Merge pull request #73544 from mashumafi/fix-func-arg-null | Rémi Verschelde | |
Fix: Func with typed args error when arg is null | |||
2023-02-20 | Merge pull request #73489 from vonagam/type-check-node | Rémi Verschelde | |
GDScript: Rework type check | |||
2023-02-19 | Fix: Func with typed args error when arg is null | mashumafi | |
2023-02-19 | Make global scope enums accessible as types in GDScript | George Marques | |
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. | |||
2023-02-17 | GDScript: Rework type check | Dmitrii Maganov | |
2023-02-17 | Fix inability to assign null regression | ocean (they/them) | |
Co-authored-by: Dmitry Maganov <vonagam@gmail.com> | |||
2023-02-17 | Merge pull request #72925 from vonagam/fix-enum-typed-array-error | Yuri Sizov | |
GDScript: Fix error about enum typed arrays | |||
2023-02-17 | Merge pull request #73398 from anvilfolk/fix-getter | Rémi Verschelde | |
Fix unset getter return types resulting in strange behavior | |||
2023-02-16 | Fix crash by freed object assign to typed variable | ocean (they/them) | |
2023-02-15 | Add return type for GDScript getters | ocean (they/them) | |
2023-02-13 | GDScript: Fix usage of ints with typed array of floats | Dmitrii Maganov | |
2023-02-09 | Merge pull request #72971 from vnen/gdscript-multiline-comment | Rémi Verschelde | |
GDScript: Allow strings as multiline comments | |||
2023-02-09 | GDScript: Be more lenient with identifiers | George Marques | |
- Allow identifiers similar to keywords if they are in ASCII range. - Allow constants to be treated as regular identifiers. - Allow keywords that can be used as identifiers in expressions. | |||
2023-02-09 | GDScript: Allow strings as multiline comments | George Marques | |
Bring back the behavior in 3.x that was left out by oversight. | |||
2023-02-09 | GDScript: Fix error about enum typed arrays | Dmitrii Maganov | |
2023-02-07 | Revert "Remove script class checks when getting function signature" | Rémi Verschelde | |
This reverts commit 0fef203b1f39c3373f9f25b8e75e75f6b03f7c88. This introduced some other issues, as discussed in #72144. | |||
2023-02-07 | Remove script class checks when getting function signature | Adam Scott | |
2023-02-06 | Merge pull request #72546 from vonagam/fix-typed-array-can-reference | Yuri Sizov | |
GDScript: Fix can_reference check for typed arrays | |||
2023-02-06 | Merge pull request #72677 from dalexeev/gds-await-infer-type | Yuri Sizov | |
GDScript: Fix `await` type inference | |||
2023-02-06 | Merge pull request #72804 from vnen/gdscript-no-onready-without-node | Yuri Sizov | |
GDScript: Fix inheritance check of @onready for inner classes | |||
2023-02-06 | GDScript: Fix `await` type inference | Danil Alexeev | |
2023-02-06 | GDScript: Fix can_reference check for typed arrays | Dmitrii Maganov | |
2023-02-06 | GDScript: Fix inheritance check of @onready for inner classes | George Marques | |
2023-02-06 | GDScript: Fix recently merged test not ignoring warnings | Rémi Verschelde | |