lexer tokens

This commit is contained in:
nora 2022-06-21 19:23:03 +02:00
parent aa8f6a91b2
commit 2e5dfb24e2
3 changed files with 127 additions and 3 deletions

View file

@ -14,7 +14,7 @@ pub enum PToken<'src> {
HeaderName(&'src str),
Identifier(&'src str),
PpNumber(&'src str),
CharConstant,
CharConstant(u8),
StringLiteral(&'src str),
Punctuator(Punctuator),
OtherNonWs(u8),