From 0c1584455101907ff5cce151c43879be2e3bf7a7 Mon Sep 17 00:00:00 2001 From: George Marques Date: Thu, 29 Dec 2022 08:57:41 -0300 Subject: GDScript: Error when assigning return value of void function 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. --- .../tests/scripts/runtime/errors/use_return_value_of_free_call.gd | 4 ++++ .../tests/scripts/runtime/errors/use_return_value_of_free_call.out | 6 ++++++ .../runtime/errors/use_return_value_of_void_builtin_method_call.gd | 4 ++++ .../runtime/errors/use_return_value_of_void_builtin_method_call.out | 6 ++++++ .../runtime/errors/use_return_value_of_void_native_method_call.gd | 4 ++++ .../runtime/errors/use_return_value_of_void_native_method_call.out | 6 ++++++ 6 files changed, 30 insertions(+) create mode 100644 modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_free_call.gd create mode 100644 modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_free_call.out create mode 100644 modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_void_builtin_method_call.gd create mode 100644 modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_void_builtin_method_call.out create mode 100644 modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_void_native_method_call.gd create mode 100644 modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_void_native_method_call.out (limited to 'modules/gdscript/tests/scripts/runtime/errors') diff --git a/modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_free_call.gd b/modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_free_call.gd new file mode 100644 index 0000000000..a3daf70627 --- /dev/null +++ b/modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_free_call.gd @@ -0,0 +1,4 @@ +func test(): + var obj + obj = Node.new() + print(obj.free()) diff --git a/modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_free_call.out b/modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_free_call.out new file mode 100644 index 0000000000..5edaf19442 --- /dev/null +++ b/modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_free_call.out @@ -0,0 +1,6 @@ +GDTEST_RUNTIME_ERROR +>> SCRIPT ERROR +>> on function: test() +>> runtime/errors/use_return_value_of_free_call.gd +>> 4 +>> Trying to get a return value of a method that returns "void" diff --git a/modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_void_builtin_method_call.gd b/modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_void_builtin_method_call.gd new file mode 100644 index 0000000000..49fb76ad1f --- /dev/null +++ b/modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_void_builtin_method_call.gd @@ -0,0 +1,4 @@ +func test(): + var value + value = [] + print(value.reverse()) diff --git a/modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_void_builtin_method_call.out b/modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_void_builtin_method_call.out new file mode 100644 index 0000000000..128356ff8a --- /dev/null +++ b/modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_void_builtin_method_call.out @@ -0,0 +1,6 @@ +GDTEST_RUNTIME_ERROR +>> SCRIPT ERROR +>> on function: test() +>> runtime/errors/use_return_value_of_void_builtin_method_call.gd +>> 4 +>> Trying to get a return value of a method that returns "void" diff --git a/modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_void_native_method_call.gd b/modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_void_native_method_call.gd new file mode 100644 index 0000000000..44f9aa467a --- /dev/null +++ b/modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_void_native_method_call.gd @@ -0,0 +1,4 @@ +func test(): + var obj + obj = RefCounted.new() + print(obj.notify_property_list_changed()) diff --git a/modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_void_native_method_call.out b/modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_void_native_method_call.out new file mode 100644 index 0000000000..e02c206778 --- /dev/null +++ b/modules/gdscript/tests/scripts/runtime/errors/use_return_value_of_void_native_method_call.out @@ -0,0 +1,6 @@ +GDTEST_RUNTIME_ERROR +>> SCRIPT ERROR +>> on function: test() +>> runtime/errors/use_return_value_of_void_native_method_call.gd +>> 4 +>> Trying to get a return value of a method that returns "void" -- cgit v1.2.3