forked from sascha/godot
Merge pull request #75605 from anvilfolk/type-base
Make GDScript type not found errors more informative.4.1
commit
54b0e8123e
@ -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".
|
||||
Loading…
Reference in New Issue