mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 05:22:23 +00:00
19 lines
467 B
Plaintext
19 lines
467 B
Plaintext
|
---input---
|
||
|
data class A(val data: String)
|
||
|
|
||
|
---tokens---
|
||
|
'data' Keyword.Declaration
|
||
|
' ' Text.Whitespace
|
||
|
'class' Keyword.Declaration
|
||
|
' ' Text.Whitespace
|
||
|
'A' Name.Class
|
||
|
'(' Punctuation
|
||
|
'val' Keyword.Declaration
|
||
|
' ' Text.Whitespace
|
||
|
'data' Name.Variable
|
||
|
':' Punctuation
|
||
|
' ' Text.Whitespace
|
||
|
'String' Keyword.Type
|
||
|
')' Punctuation
|
||
|
'\n' Text.Whitespace
|