| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add RecursionLimit parser error | Tolmachev Igor | 2026-05-09 | 2 | -0/+12 |
| | | | | | | Returns error after 256 levels of nesting to avoid stack overflow. The limit is hardcoded now, but will become a compiler flag later. | ||||
| * | Reserve inf, +inf, -inf, nan as keywords | Tolmachev Igor | 2026-05-09 | 1 | -1/+5 |
| | | | | | Needed to represent literals as f64::INFINITY, f64::NEG_INFINITY and f64::NAN. | ||||
| * | Fix lexer processing [+-].\d as symbol instead of number | Tolmachev Igor | 2026-05-09 | 2 | -3/+15 |
| | | | | | | | | Extended lookahead in the number branch to 3 chars. Added tests for "-.5", "+.5", "-.0" in test_numbers and for "-.", "+.", ".", "+.a", "-.a" in test_ambiguous. | ||||
| * | Replace todo!() in parser with errors | Tolmachev Igor | 2026-05-09 | 2 | -53/+67 |
| | | |||||
| * | Rename Parser.cursor to Parser.last_token_end | Tolmachev Igor | 2026-05-09 | 1 | -9/+11 |
| | | | | | `cursor` sounds like the current position, but the field stores the end of the last consumed token. | ||||
| * | Add AST parser skeleton | Tolmachev Igor | 2026-05-09 | 3 | -0/+221 |
| | | |||||
| * | Add test for span positions after quote token | Tolmachev Igor | 2026-05-09 | 1 | -0/+14 |
| | | |||||
| * | Split Spanned<T> from Span and expose fields | Tolmachev Igor | 2026-05-08 | 3 | -45/+34 |
| | | | | | | Spanned<T> wraps a value with a Span. Public fields enable destructuring in pattern matches. | ||||
| * | Fold unclosed string error into Token variant | Tolmachev Igor | 2026-05-08 | 3 | -62/+36 |
| | | | | | | UnclosedString was the only error variant, making lexer::Error redundant. Also removes Result from the Iterator impl. | ||||
| * | Add lexer | Tolmachev Igor | 2026-05-07 | 5 | -0/+617 |
| | | |||||
| * | Initial commitHEADmain | Tolmachev Igor | 2026-05-06 | 1 | -0/+3 |
