feat(lexer): negation

This commit is contained in:
Matteo Flebus 2026-01-27 16:44:53 +01:00
parent c48d86c8de
commit 9003675c40
2 changed files with 7 additions and 16 deletions

View file

@ -49,7 +49,7 @@ enum token_type
TOKEN_LEFT_BRACKET,
TOKEN_RIGHT_BRACKET,
TOKEN_PIPE,
TOKEN_NEGATION, // TODO handle
TOKEN_NEGATION,
// TODO merge into one and use the data field
// (Too difficult to handle in the parser because of firsts)