initial commit, 4.5 stable
Some checks failed
🔗 GHA / 📊 Static checks (push) Has been cancelled
🔗 GHA / 🤖 Android (push) Has been cancelled
🔗 GHA / 🍏 iOS (push) Has been cancelled
🔗 GHA / 🐧 Linux (push) Has been cancelled
🔗 GHA / 🍎 macOS (push) Has been cancelled
🔗 GHA / 🏁 Windows (push) Has been cancelled
🔗 GHA / 🌐 Web (push) Has been cancelled
Some checks failed
🔗 GHA / 📊 Static checks (push) Has been cancelled
🔗 GHA / 🤖 Android (push) Has been cancelled
🔗 GHA / 🍏 iOS (push) Has been cancelled
🔗 GHA / 🐧 Linux (push) Has been cancelled
🔗 GHA / 🍎 macOS (push) Has been cancelled
🔗 GHA / 🏁 Windows (push) Has been cancelled
🔗 GHA / 🌐 Web (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
extends "external_parser_base1.notest.gd"
|
||||
|
||||
const External1 = preload("external_parser_script1.notest.gd")
|
||||
|
||||
func baz(e1: External1) -> void:
|
||||
print(e1.e1c.bar)
|
||||
print(e1.baz)
|
||||
|
||||
func test_external_base_parser_type_resolve(_v: TypeFromBase):
|
||||
pass
|
||||
|
||||
func test():
|
||||
var ext := External1.new()
|
||||
print(ext.array[0].test2)
|
||||
print(ext.get_external2().get_external3().test3)
|
||||
# TODO: This actually produces a runtime error, but we're testing the analyzer here
|
||||
#baz(ext)
|
Reference in New Issue
Block a user