summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/runtime/errors
Commit message (Collapse)AuthorAgeFilesLines
* GDScript: Avoid calling non-static methods on native classesGeorge Marques2023-01-282-0/+12
|
* GDScript: Fix test for read-only state of constantsDmitrii Maganov2023-01-274-22/+0
|
* Merge pull request #70987 from vonagam/fix-parameter-conversion-assignGeorge Marques2023-01-122-0/+16
|\
| * GDScript: Fix missing conversion for default argument valuesDmitrii Maganov2023-01-062-0/+16
| |
* | Add GDScript `.editorconfig` rulesAdam Scott2023-01-101-1/+1
| | | | | | | | - Uniformize `.gd` unit test files indentation to tabs (where needed)
* | GDScript: Begin making constants deep, not shallow or flatDmitrii Maganov2023-01-088-0/+46
|/
* GDScript: Error when assigning return value of void functionGeorge Marques2022-12-306-0/+30
| | | | | This also makes built-in method calls empty the return value when the method is void, to avoid keeping returning a garbage value in such case.
* GDScript: Allow tests to run on release buildsGeorge Marques2022-02-032-1/+2
| | | | | | | | | - Fix compilation issues by disabling warnings on release builds. This also strips warnings from expected result before the comparison to avoid false mismatches. - Add a `#debug-only` flag to tests. Must be the first line of the test script. Those won't run with release builds. Can be used for test cases that rely on checks only available on debug builds.
* Make Callable not crash on call when the object has been freedGeorge Marques2021-05-242-0/+11
Also add a GDScript test for this case.