Merge pull request #89472 from dalexeev/gds-fix-bin-tokenizer-continuation-lines

GDScript: Fix continuation lines in `GDScriptTokenizerBuffer`
This commit is contained in:
Rémi Verschelde 2024-04-15 18:14:38 +02:00
commit 684e7aa37a
No known key found for this signature in database
GPG key ID: C3336907360768E1
5 changed files with 35 additions and 11 deletions

View file

@ -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")

View file

@ -0,0 +1,2 @@
GDTEST_OK
Ok