blob: 730c0a5c02f53b751197f62b7ee9ed236d61365c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
---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
|