mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 05:22:23 +00:00
14 lines
317 B
Plaintext
14 lines
317 B
Plaintext
|
# Test that multiple spaces with an equal sign doesn't get formatted to a string.
|
||
|
|
||
|
---input---
|
||
|
x = 100;
|
||
|
|
||
|
---tokens---
|
||
|
'x' Name
|
||
|
' ' Text.Whitespace
|
||
|
'=' Punctuation
|
||
|
' ' Text.Whitespace
|
||
|
'100' Literal.Number.Integer
|
||
|
';' Punctuation
|
||
|
'\n' Text.Whitespace
|