From fb45cab133103de4f641cc72a553a28463bed7fd Mon Sep 17 00:00:00 2001 From: Danil Alexeev Date: Fri, 11 Aug 2023 11:22:01 +0300 Subject: GDScript: Fix "Identifier not found" error when accessing inner class from inside --- .../features/inner_class_access_from_inside.gd | 21 +++++++++++++++++++++ .../features/inner_class_access_from_inside.out | 5 +++++ 2 files changed, 26 insertions(+) create mode 100644 modules/gdscript/tests/scripts/analyzer/features/inner_class_access_from_inside.gd create mode 100644 modules/gdscript/tests/scripts/analyzer/features/inner_class_access_from_inside.out (limited to 'modules/gdscript/tests') diff --git a/modules/gdscript/tests/scripts/analyzer/features/inner_class_access_from_inside.gd b/modules/gdscript/tests/scripts/analyzer/features/inner_class_access_from_inside.gd new file mode 100644 index 0000000000..51c589b8e0 --- /dev/null +++ b/modules/gdscript/tests/scripts/analyzer/features/inner_class_access_from_inside.gd @@ -0,0 +1,21 @@ +# GH-80508 + +class A: + func a(): + return A.new() + func b(): + return B.new() + +class B: + func a(): + return A.new() + func b(): + return B.new() + +func test(): + var a := A.new() + var b := B.new() + print(a.a() is A) + print(a.b() is B) + print(b.a() is A) + print(b.b() is B) diff --git a/modules/gdscript/tests/scripts/analyzer/features/inner_class_access_from_inside.out b/modules/gdscript/tests/scripts/analyzer/features/inner_class_access_from_inside.out new file mode 100644 index 0000000000..f9783e4362 --- /dev/null +++ b/modules/gdscript/tests/scripts/analyzer/features/inner_class_access_from_inside.out @@ -0,0 +1,5 @@ +GDTEST_OK +true +true +true +true -- cgit v1.2.3