mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
14 lines
380 B
Plaintext
14 lines
380 B
Plaintext
---input---
|
|
// this is a line-ending comment
|
|
//* embed a bock comment start, after a space
|
|
// /* embed a bock comment start, v2
|
|
|
|
---tokens---
|
|
' ' Text.Whitespace
|
|
'// this is a line-ending comment\n' Comment.Single
|
|
|
|
' ' Text.Whitespace
|
|
'//* embed a bock comment start, after a space\n' Comment.Single
|
|
|
|
'// /* embed a bock comment start, v2\n' Comment.Single
|