summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/runtime
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #91364 from vnen/gdscript-implicit-ready-base-firstRémi Verschelde2024-05-022-0/+21
|\
| * GDScript: Call implicit ready on base script firstGeorge Marques2024-05-022-0/+21
* | [GDScript] Correctly report invalid read-only accessA Thousand Ships2024-05-013-3/+3
* | Merge pull request #91192 from vnen/gdscript-validated-native-static-callsRémi Verschelde2024-05-012-0/+9
|\ \
| * | GDScript: Perform validated calls with static methodsGeorge Marques2024-04-252-0/+9
* | | Merge pull request #89647 from AThousandShips/read_only_dictRémi Verschelde2024-05-012-0/+10
|\ \ \ | |_|/ |/| |
| * | [Core] Fix property access on read-only `Dictionary`A Thousand Ships2024-04-222-0/+10
* | | GDScript: Fix object iterator opcodesDanil Alexeev2024-04-262-0/+79
| |/ |/|
* | GDScript: Fix test `reset_uninit_local_vars.gd` failureDanil Alexeev2024-04-241-3/+3
* | Merge pull request #89990 from dalexeev/gds-reset-uninit-local-varsRémi Verschelde2024-04-242-0/+25
|\ \ | |/ |/|
| * GDScript: Fix uninitialized local variables not being resetDanil Alexeev2024-03-302-0/+25
* | GDScript: Warn when enum variable has no defaultGeorge Marques2024-04-161-0/+1
* | Merge pull request #90442 from vnen/gdscript-dont-warn-using-default-builtinRémi Verschelde2024-04-101-0/+2
|\ \
| * | GDScript: Don't warn on unassigned for builtin-typed variablesGeorge Marques2024-04-101-0/+2
* | | Merge pull request #84043 from dalexeev/gds-fix-unsafe-cast-warningRémi Verschelde2024-04-0910-0/+74
|\ \ \ | |/ / |/| |
| * | GDScript: Fix `UNSAFE_CAST` warningDanil Alexeev2023-10-2710-0/+74
* | | Add tests for signal await with parameterskobewi2024-04-082-0/+29
| |/ |/|
* | [Core] Disconnect one-shot signals before calling callbacksA Thousand Ships2024-03-204-0/+40
* | Merge pull request #87680 from AThousandShips/the_angry_countRémi Verschelde2024-03-132-0/+129
|\ \
| * | Add methods to get argument count of methodsA Thousand Ships2024-03-102-0/+129
* | | GDScript: Fix `@warning_ignore` annotation issuesDanil Alexeev2024-03-122-0/+14
|/ /
* | [GDScript] Fix some test file pathsA Thousand Ships2024-03-0412-0/+0
* | Core: Add `Callable.create` static method for `Variant` callablesDanil Alexeev2024-02-292-2/+11
* | Merge pull request #82122 from dalexeev/gds-add-export-hidden-annotationRémi Verschelde2024-02-275-14/+17
|\ \
| * | GDScript: Add `@export_storage` annotationDanil Alexeev2023-12-195-14/+17
| |/
* | set has_type false if it is BUILTIN but Variant::NILemre0altan2024-02-112-0/+8
* | Merge pull request #86823 from dalexeev/gds-utility-func-as-callableRémi Verschelde2024-01-302-0/+17
|\ \
| * | GDScript: Allow utility functions to be used as `Callable`Danil Alexeev2024-01-052-0/+17
* | | Allow `free()` to be used as CallableGeorge Marques2024-01-182-0/+13
|/ /
* | Merge pull request #82639 from golfinq/gdscript-improve-indexing-errorRémi Verschelde2024-01-042-2/+2
|\ \
| * | GDScript: Improve error messages for invalid indexingRémi Verschelde2023-10-022-2/+2
* | | Merge pull request #86088 from dalexeev/gds-fix-static-func-as-callable-in-st...Rémi Verschelde2024-01-022-1/+9
|\ \ \
| * | | GDScript: Fix accessing static function as `Callable` in static contextDanil Alexeev2023-12-122-1/+9
| | |/ | |/|
* / | Core: Allow methods of built-in `Variant` types to be used as CallablesDanil Alexeev2023-10-252-0/+9
|/ /
* | GDScript: Fix incorrect error message for utility functionsDanil Alexeev2023-10-164-0/+18
* | GDScript: Replace ptrcalls on MethodBind to validated callsGeorge Marques2023-10-061-3/+3
* | Core: Fix `Object::has_method()` for script static methodsDanil Alexeev2023-10-042-0/+15
* | GDScript: Fix `UNSAFE_CALL_ARGUMENT` warning for `Variant` constructorsDanil Alexeev2023-09-301-1/+0
|/
* Merge pull request #82186 from dalexeev/gds-fix-property-duplicationYuri Sizov2023-09-282-0/+69
|\
| * GDScript: Fix duplication of inherited script propertiesDanil Alexeev2023-09-232-0/+69
* | Merge pull request #82030 from dalexeev/gds-make-for-loop-array-literal-typedYuri Sizov2023-09-282-0/+10
|\ \
| * | GDScript: Make array literal typed if `for` loop variable type is specifiedDanil Alexeev2023-09-212-0/+10
| |/
* | Merge pull request #80085 from vnen/gdscript-pattern-guardsYuri Sizov2023-09-282-0/+81
|\ \
| * | GDScript: Implement pattern guards for match statementGeorge Marques2023-09-272-0/+81
| |/
* / GDScript: Improve call analysisDanil Alexeev2023-09-215-1/+12
|/
* GDScript: Fix some lambda bugsDanil Alexeev2023-09-145-62/+59
* GDScript: Fix `get_*_list()` methods return incorrect infoDanil Alexeev2023-09-042-0/+170
* GDScript: Add static typing for `for` loop variableDanil Alexeev2023-08-174-0/+69
* GDScript: Fix regression with native signal not foundDanil Alexeev2023-08-022-0/+19
* Merge pull request #78254 from dalexeev/gds-fix-property-group-name-conflictYuri Sizov2023-07-312-0/+22
|\