mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 05:22:23 +00:00
23 lines
470 B
Plaintext
23 lines
470 B
Plaintext
---input---
|
|
label:
|
|
for(String var2: var1) {}
|
|
|
|
---tokens---
|
|
'label' Name.Label
|
|
':' Punctuation
|
|
'\n' Text.Whitespace
|
|
|
|
'for' Keyword
|
|
'(' Punctuation
|
|
'String' Name
|
|
' ' Text.Whitespace
|
|
'var2' Name
|
|
':' Punctuation
|
|
' ' Text.Whitespace
|
|
'var1' Name
|
|
')' Punctuation
|
|
' ' Text.Whitespace
|
|
'{' Punctuation
|
|
'}' Punctuation
|
|
'\n' Text.Whitespace
|