13 lines
317 B
Text
13 lines
317 B
Text
# 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
|