From 6f2a8434c675b3df2aceca4e5200aaf799eeb2bd Mon Sep 17 00:00:00 2001 From: George Marques Date: Fri, 24 Feb 2023 10:03:12 -0300 Subject: GDScript: Fix groups and categories been seen as members --- .../tests/scripts/runtime/features/groups_are_not_properties.gd | 9 +++++++++ .../tests/scripts/runtime/features/groups_are_not_properties.out | 3 +++ 2 files changed, 12 insertions(+) create mode 100644 modules/gdscript/tests/scripts/runtime/features/groups_are_not_properties.gd create mode 100644 modules/gdscript/tests/scripts/runtime/features/groups_are_not_properties.out (limited to 'modules/gdscript/tests') diff --git a/modules/gdscript/tests/scripts/runtime/features/groups_are_not_properties.gd b/modules/gdscript/tests/scripts/runtime/features/groups_are_not_properties.gd new file mode 100644 index 0000000000..d205da22c2 --- /dev/null +++ b/modules/gdscript/tests/scripts/runtime/features/groups_are_not_properties.gd @@ -0,0 +1,9 @@ +# https://github.com/godotengine/godot/issues/73843 +extends RefCounted + +@export_group("Resource") +@export_category("RefCounted") + +func test(): + prints("Not shadowed", Resource.new()) + prints("Not shadowed", RefCounted.new()) diff --git a/modules/gdscript/tests/scripts/runtime/features/groups_are_not_properties.out b/modules/gdscript/tests/scripts/runtime/features/groups_are_not_properties.out new file mode 100644 index 0000000000..a1a2ff6cd9 --- /dev/null +++ b/modules/gdscript/tests/scripts/runtime/features/groups_are_not_properties.out @@ -0,0 +1,3 @@ +GDTEST_OK +Not shadowed +Not shadowed -- cgit v1.2.3