mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-04-08 08:46:13 +00:00
Fix comment whitespace tokenizer issues
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
test("hello" + 3 + "gdfg", (2 * (3+1) * (2 * (1+1))));
|
||||
|
||||
//
|
||||
num testVar = 3.4;
|
||||
bool boolean = true;
|
||||
str stringVar = "hello!";
|
||||
@@ -8,5 +8,11 @@ if(true && boolean) {
|
||||
num scopedVar = 2;
|
||||
test("fdsgdf" + 2 + stringVar, 1 + testVar + scopedVar);
|
||||
}
|
||||
// comment
|
||||
|
||||
/*
|
||||
fsdfsd
|
||||
*/
|
||||
|
||||
test("fdsgdf" + 2, 1 + testVar);
|
||||
|
||||
test("fdsgdf" + 2, 1 + testVar);
|
||||
Reference in New Issue
Block a user