virtualx-engine/modules/gdscript/tests
George Marques 4a7d49a89a
GDScript: Replace ptrcalls on MethodBind to validated calls
This improves the performance of typed calls to engine methods when the
argument types are exact.

Using validated calls delegate more of the work the core instead of
doing argument unpacking in the VM. It also does not need different
instructions for each return type, simplifying the code.
2023-10-06 11:15:44 -03:00
..
scripts GDScript: Replace ptrcalls on MethodBind to validated calls 2023-10-06 11:15:44 -03:00
gdscript_test_runner.cpp GDScript: Add INFERRED_DECLARATION warning 2023-09-22 23:13:52 +03:00
gdscript_test_runner.h Style: Harmonize header includes in modules 2023-06-15 14:35:45 +02:00
gdscript_test_runner_suite.h Style: Harmonize header includes in modules 2023-06-15 14:35:45 +02:00
README.md Update all outdated online documentation links 2023-01-14 19:38:00 +03:00
test_gdscript.cpp Merge pull request #79425 from vnen/gdscript-load-classes-for-debug-tests 2023-10-03 17:11:01 +02:00
test_gdscript.h Style: Harmonize header includes in modules 2023-06-15 14:35:45 +02:00
test_lsp.h Language Server: Improve hovered symbol resolution, fix renaming bugs, implement reference lookup 2023-09-11 09:46:34 -05:00

GDScript integration tests

The scripts/ folder contains integration tests in the form of GDScript files and output files.

See the Integration tests for GDScript documentation for information about creating and running GDScript integration tests.