mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
17 lines
255 B
Plaintext
17 lines
255 B
Plaintext
|
---input---
|
||
|
/*
|
||
|
* comment
|
||
|
*/
|
||
|
; comment
|
||
|
// comment
|
||
|
|
||
|
---tokens---
|
||
|
'/*\n * comment\n */' Comment.Multiline
|
||
|
'\n' Text.Whitespace
|
||
|
|
||
|
'; comment' Comment.Single
|
||
|
'\n' Text.Whitespace
|
||
|
|
||
|
'// comment' Comment.Single
|
||
|
'\n' Text.Whitespace
|