summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/runtime
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-05-01 09:55:04 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-05-01 09:55:04 +0200
commit731ea17dd4bc18ceccef14924a9db2eb57058b2d (patch)
tree38088edd87a4e4123d65adcdd1f119580c304525 /modules/gdscript/tests/scripts/runtime
parentf89de7ab435c8fdc5c5666d9678e5566e952ed6d (diff)
parent7ca038effa28c1767e43e4f66d2bd9f34852d5b7 (diff)
downloadredot-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.gd7
-rw-r--r--modules/gdscript/tests/scripts/runtime/features/call_native_static_method_validated.out2
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