diff options
author | George Marques <george@gmarqu.es> | 2023-02-25 13:40:31 -0300 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2023-02-25 13:40:31 -0300 |
commit | eba984a44f37ef263ee2389aa8eae631298ce0ff (patch) | |
tree | bcdb3d191fc589e4985f74dd1f9dc6bdb5f07c0c /modules/gdscript/tests | |
parent | 3863199ab940272f6844ff30910ec7a520e47f41 (diff) |
Revert "GDScript: Fix groups and categories been seen as members"
This reverts commit 6f2a8434c675b3df2aceca4e5200aaf799eeb2bd.
The commit introduces a bug where it creates spurious entries for member
information.
Diffstat (limited to 'modules/gdscript/tests')
-rw-r--r-- | modules/gdscript/tests/scripts/runtime/features/groups_are_not_properties.gd | 11 | ||||
-rw-r--r-- | modules/gdscript/tests/scripts/runtime/features/groups_are_not_properties.out | 3 |
2 files changed, 0 insertions, 14 deletions
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 deleted file mode 100644 index a5ad7c0b85..0000000000 --- a/modules/gdscript/tests/scripts/runtime/features/groups_are_not_properties.gd +++ /dev/null @@ -1,11 +0,0 @@ -# https://github.com/godotengine/godot/issues/73843 -extends RefCounted - -@export_group("Resource") -@export_category("RefCounted") - -func test(): - var res = Resource.new() - var ref = RefCounted.new() - prints("Resource class not shadowed:", res is Resource) - prints("RefCounted class not shadowed:", ref is RefCounted) 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 deleted file mode 100644 index 182c6dcd3a..0000000000 --- a/modules/gdscript/tests/scripts/runtime/features/groups_are_not_properties.out +++ /dev/null @@ -1,3 +0,0 @@ -GDTEST_OK -Resource class not shadowed: true -RefCounted class not shadowed: true |