about summary refs log tree commit diff
path: root/boot/lex.c
AgeCommit message (Collapse)Author
2025-06-14Bare-declaration parsing and `for` and `while` for loopsMel
Signed-off-by: Mel <mel@rnrd.eu>
2025-06-14Disambiguate variable declaration and call/array access syntax with `var` + ↵Mel
`let` Signed-off-by: Mel <mel@rnrd.eu>
2025-06-12Parse most primitive types into treeMel
Signed-off-by: Mel <mel@rnrd.eu>
2025-06-03Range binary operationMel
Signed-off-by: Mel <mel@rnrd.eu>
2025-06-03Parse and lex ++, --, ** operators, with prefix and postfix handlingMel
Signed-off-by: Mel <mel@rnrd.eu>
2025-05-31Keyword-less variable declaration parsingMel
Signed-off-by: Mel <mel@rnrd.eu>
2025-05-24Failure when default case reached in non-optional switch functionsMel
Signed-off-by: Mel <mel@rnrd.eu>
2025-05-24Correctly interpret all assignment operator expression variationsMel
Signed-off-by: Mel <mel@rnrd.eu>
2025-05-23Lex boolean literalsMel
Signed-off-by: Mel <mel@rnrd.eu>
2025-05-21Basic expression parser with operator precedence and associativityMel
Signed-off-by: Mel <mel@rnrd.eu>
2025-05-18Define basic syntax tree (mostly expressions), with simple debug printingMel
Signed-off-by: Mel <mel@rnrd.eu>
2025-03-15Keyword recognition in lexer through CRC32Mel
Signed-off-by: Mel <mel@rnrd.eu>
2025-03-14Bootstrapping lexerMel
Signed-off-by: Mel <mel@rnrd.eu>