18 lines
467 B
Text
18 lines
467 B
Text
---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
|