mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
14 lines
329 B
Plaintext
14 lines
329 B
Plaintext
Comments can precede preprocessor macros
|
|
|
|
---input---
|
|
/* Comment */ /* Another */ #define FOO 0
|
|
|
|
---tokens---
|
|
'/* Comment */' Comment.Multiline
|
|
' ' Text.Whitespace
|
|
'/* Another */' Comment.Multiline
|
|
' ' Text.Whitespace
|
|
'#' Comment.Preproc
|
|
'define FOO 0' Comment.Preproc
|
|
'\n' Comment.Preproc
|