You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-06 12:20:30 +00:00
GDScript: Fix continuation lines in GDScriptTokenizerBuffer
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
# GH-89403
|
||||
|
||||
func test():
|
||||
var x := 1
|
||||
if x == 0 \
|
||||
# Comment.
|
||||
# Comment.
|
||||
and (x < 1 or x > 2) \
|
||||
# Comment.
|
||||
and x != 3:
|
||||
pass
|
||||
print("Ok")
|
||||
@@ -0,0 +1,2 @@
|
||||
GDTEST_OK
|
||||
Ok
|
||||
Reference in New Issue
Block a user