summaryrefslogtreecommitdiff
path: root/tests/snippets/matlab/test_multiple_spaces_variable_assignment.txt
blob: ec5ac24cafb9c86ec3049b1625caf2ff3ba5ec67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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