Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-22 | Document `@GDScript.is_instance_of` method | Danil Alexeev | |
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 | Merge pull request #73689 from vnen/gdscript-fix-inheritance-native-class | Rémi Verschelde | |
GDScript: Fix setting native type with script inheritance | |||
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 | Merge pull request #73693 from vnen/gdscript-fix-script-signature-check | Rémi Verschelde | |
GDScript: Fix override signature check of script inheritance | |||
2023-02-21 | Merge pull request #73680 from vnen/gdscript-div-by-zero-crash-fix | Rémi Verschelde | |
GDScript: Avoid validated division operation to test for zero | |||
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-21 | GDScript: Fix setting native type with script inheritance | George Marques | |
Sometimes the inheritance tree is compiled out of order and the base don't have yet a native type set. This is now changed to not rely on the base script but use the native type set in the datatype, which is already resolved by the analyzer. | |||
2023-02-21 | GDScript: Avoid validated division operation to test for zero | George Marques | |
The validated operations for integer division and modulo do not check for division by zero. This avoids validated operation in these cases to make sure the check is performed and avoid crashing the engine. | |||
2023-02-21 | GDScript: Fix crash when autoload script can't be found | George Marques | |
2023-02-20 | Add test for const class references | mashumafi | |
2023-02-20 | GDScript: Limit recursion depth for completion functions | George Marques | |
Avoid crashing if the completion gets stuck in infinite recursion while trying to guess the expression type. | |||
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-20 | Merge pull request #73291 from vonagam/fix-unsafe-weak-binop | Rémi Verschelde | |
GDScript: Fix missing unsafety mark for binary op with weak variables | |||
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-18 | Merge pull request #73501 from anvilfolk/oopsiedaisy | Yuri Sizov | |
Fix inability to assign null regression | |||
2023-02-17 | Merge pull request #73448 from RandomShaper/fix_sticky_stack | Yuri Sizov | |
Avoid GDScript bookkeeping from referencing objects longer than necessary | |||
2023-02-17 | Avoid GDScript bookkeeping from referencing objects longer than necessary | Pedro J. Estébanez | |
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 #72867 from vnen/gdscript-limit-call-depth | Yuri Sizov | |
GDScript: Add limit to call depth | |||
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-17 | Merge pull request #73364 from anvilfolk/fix-freed | Rémi Verschelde | |
Fix crash by freed object assign to typed variable | |||
2023-02-16 | Fix crash by freed object assign to typed variable | ocean (they/them) | |
2023-02-16 | GDScript: Fix infer on read-only property | Dmitrii Maganov | |
2023-02-15 | Add return type for GDScript getters | ocean (they/them) | |
2023-02-14 | GDScript: Fix default value of exported enum variable | Danil Alexeev | |
2023-02-14 | GDScript: Fix missing unsafety mark for binary op with weak variables | Dmitrii Maganov | |
2023-02-14 | Tweak `@GlobalScope` & `GDScript`'s documentation | Micky | |
2023-02-13 | GDScript: Fix usage of ints with typed array of floats | Dmitrii Maganov | |
2023-02-13 | Revert "Fixed the jumping to function definition using 'Ctrl+LMB'." | Rémi Verschelde | |
This reverts commit 7eb6367d5cb62fb48563ad940423198f792e3fe8. Fixes #73058. Fixes #73167. This caused regressions, we'll retry with fixes for 4.1. | |||
2023-02-12 | Improve GDScript error for method call on null/previously freed instance | pkowal | |
Fixes #53878. | |||
2023-02-11 | Merge pull request #73033 from akien-mga/gdscript-fix-gd4-renames-build | Rémi Verschelde | |
Clean up ProjectConverter3To4 architecture, move renames map to separate file | |||
2023-02-11 | Merge pull request #72654 from RandomShaper/ptrcall_ret_raw_obj | Rémi Verschelde | |
Avoid losing references to objects in the native-scripting boundary | |||
2023-02-10 | Clean up ProjectConverter3To4 architecture, move renames map to separate file | Rémi Verschelde | |
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. | |||
2023-02-10 | GDScript: Remove `treat_warnings_as_errors` project setting | Danil Alexeev | |
2023-02-09 | Merge pull request #72971 from vnen/gdscript-multiline-comment | Rémi Verschelde | |
GDScript: Allow strings as multiline comments | |||
2023-02-09 | Merge pull request #72975 from vnen/gdscript-no-ascii-spoof-check | Rémi Verschelde | |
GDScript: Be more lenient with identifiers | |||
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 | Merge pull request #69550 from Rindbee/fix-script-editor-not-reload-via-lsp | Rémi Verschelde | |
Fix internal editor not updating when using external editor via LSP |