mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-13 23:12:24 +00:00
17 lines
260 B
Plaintext
17 lines
260 B
Plaintext
|
---input---
|
||
|
# single line comment
|
||
|
|
||
|
/* multi
|
||
|
line
|
||
|
comment */
|
||
|
|
||
|
|
||
|
---tokens---
|
||
|
'# single line comment' Comment.Single
|
||
|
'\n\n' Text
|
||
|
|
||
|
'/*' Comment.Multiline
|
||
|
' multi\nline\ncomment ' Comment.Multiline
|
||
|
'*/' Comment.Multiline
|
||
|
'\n' Text
|