mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 10:11:57 +03:00
Merge pull request #75605 from anvilfolk/type-base
Make GDScript type not found errors more informative.
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
class InnerClass:
|
||||
pass
|
||||
|
||||
func test():
|
||||
var x : InnerClass.DoesNotExist
|
||||
print("FAIL")
|
||||
@@ -0,0 +1,2 @@
|
||||
GDTEST_ANALYZER_ERROR
|
||||
Could not find type "DoesNotExist" under base "InnerClass".
|
||||
Reference in New Issue
Block a user