diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-01 09:55:04 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-01 09:55:04 +0200 |
commit | 731ea17dd4bc18ceccef14924a9db2eb57058b2d (patch) | |
tree | 38088edd87a4e4123d65adcdd1f119580c304525 /modules/gdscript/tests/scripts/runtime | |
parent | f89de7ab435c8fdc5c5666d9678e5566e952ed6d (diff) | |
parent | 7ca038effa28c1767e43e4f66d2bd9f34852d5b7 (diff) | |
download | redot-engine-731ea17dd4bc18ceccef14924a9db2eb57058b2d.tar.gz |
Merge pull request #91192 from vnen/gdscript-validated-native-static-calls
GDScript: Perform validated calls with static methods
Diffstat (limited to 'modules/gdscript/tests/scripts/runtime')
-rw-r--r-- | modules/gdscript/tests/scripts/runtime/features/call_native_static_method_validated.gd | 7 | ||||
-rw-r--r-- | modules/gdscript/tests/scripts/runtime/features/call_native_static_method_validated.out | 2 |
2 files changed, 9 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/runtime/features/call_native_static_method_validated.gd b/modules/gdscript/tests/scripts/runtime/features/call_native_static_method_validated.gd new file mode 100644 index 0000000000..35e4dbd6a0 --- /dev/null +++ b/modules/gdscript/tests/scripts/runtime/features/call_native_static_method_validated.gd @@ -0,0 +1,7 @@ +func test(): + # Validated native static call with return value. + print(FileAccess.file_exists("some_file")) + + # Validated native static call without return value. + Node.print_orphan_nodes() + diff --git a/modules/gdscript/tests/scripts/runtime/features/call_native_static_method_validated.out b/modules/gdscript/tests/scripts/runtime/features/call_native_static_method_validated.out new file mode 100644 index 0000000000..44302c8137 --- /dev/null +++ b/modules/gdscript/tests/scripts/runtime/features/call_native_static_method_validated.out @@ -0,0 +1,2 @@ +GDTEST_OK +false |