mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
19 lines
410 B
Plaintext
19 lines
410 B
Plaintext
|
Space around line break before macro is valid C, but failed to parse previously.
|
||
|
|
||
|
---input---
|
||
|
foo();
|
||
|
#define FOO 0
|
||
|
|
||
|
---tokens---
|
||
|
'foo' Name
|
||
|
'(' Punctuation
|
||
|
')' Punctuation
|
||
|
';' Punctuation
|
||
|
' ' Text.Whitespace
|
||
|
'\n' Text.Whitespace
|
||
|
|
||
|
' ' Text.Whitespace
|
||
|
'#' Comment.Preproc
|
||
|
'define FOO 0' Comment.Preproc
|
||
|
'\n' Comment.Preproc
|