GDScript: Allow classes declaration to be done in single line
Incidentally, allow multiple statements in single line functions when using semicolon as a terminator.
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
#GDTEST_OK
|
||||
|
||||
func test(): C.new().test("Ok"); test2()
|
||||
|
||||
func test2(): print("Ok 2")
|
||||
|
||||
class A: pass
|
||||
|
||||
class B extends RefCounted: pass
|
||||
|
||||
class C extends RefCounted: func test(x): print(x)
|
||||
Reference in New Issue
Block a user