tartrazine/spec/tests/java/test_default.txt

37 lines
787 B
Plaintext
Raw Normal View History

2024-08-03 10:36:47 +00:00
---input---
switch (x) {
case 1: break;
default: break;
}
---tokens---
'switch' Keyword
' ' Text.Whitespace
'(' Punctuation
'x' Name
')' Punctuation
' ' Text.Whitespace
'{' Punctuation
'\n' Text.Whitespace
' ' Text.Whitespace
'case' Keyword
' ' Text.Whitespace
'1' Literal.Number.Integer
':' Punctuation
' ' Text.Whitespace
'break' Keyword
';' Punctuation
'\n' Text.Whitespace
' ' Text.Whitespace
'default' Keyword
':' Punctuation
' ' Text.Whitespace
'break' Keyword
';' Punctuation
'\n' Text.Whitespace
'}' Punctuation
'\n' Text.Whitespace