lexing and parsing unary operators
This commit is contained in:
parent
b2c2a2f497
commit
202c1d2ca2
21 changed files with 290 additions and 130 deletions
|
|
@ -11,6 +11,11 @@ namespace Compiler.Lexer
|
|||
SemicolonToken,
|
||||
IdentifierToken,
|
||||
IntegerLiteralToken,
|
||||
|
||||
//unary operator tokens
|
||||
NegationToken,
|
||||
BitwiseComplementToken,
|
||||
LogicalNegationToken,
|
||||
|
||||
//special Token to represent invalid matches
|
||||
InvalidToken,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue