| Age | Commit message (Expand) | Author |
| 2026-05-24 | Support named-unnamed call and construction arguments and fields with final r... | Mel |
| 2026-05-24 | Make diagnostics generic over passes, condensing different error handling | Mel |
| 2026-05-04 | Bump license year for touched files | Mel |
| 2026-05-03 | Rename tree nodes to add consistent prefix, de-node, clean-up names | Mel |
| 2025-12-28 | Expand bootstrap common library with generic Array and more String utility fu... | Mel |
| 2025-07-23 | Add rudimentary catskill-to-C transpiler (yay!) | Mel |
| 2025-07-22 | Remove ambiguity from construct expressions and if/for/while blocks | Mel |
| 2025-07-18 | Separate call/construct expression back into parts | Mel |
| 2025-07-10 | Fix nil-dereference in `parser_node_type_class` | Mel |
| 2025-07-10 | Display causing tokens lexeme directly from source for error messages | Mel |
| 2025-07-09 | Rudimentary semi-recoverable parser panic mode | Mel |
| 2025-07-09 | Shorten token_span_to_line_span and reduce edge case errors in it | Mel |
| 2025-07-09 | Multi-error display and fix up finding line boundries | Mel |
| 2025-07-09 | Display human-readable, informative parser error messages w/ source snippet | Mel |
| 2025-07-06 | Correct handling of empty block nodes | Mel |
| 2025-07-06 | Parse variadic parameters in function definitions | Mel |
| 2025-07-05 | Correctly recurse over self-containing non-homogenous postfix-type expressions | Mel |
| 2025-07-05 | Try (?) & must (!) expressions | Mel |
| 2025-07-01 | Parse pragmas as free-standing statements, without attachment | Mel |
| 2025-06-30 | Factor out translation unit includes to seperate header | Mel |
| 2025-06-30 | License project files under MPL-2.0 | Mel |
| 2025-06-24 | Parse Maybe (?) type | Mel |
| 2025-06-24 | Parse named arguments, thus enabling type constructions | Mel |
| 2025-06-15 | Fix disambiguation check between no-return function body & function returning... | Mel |
| 2025-06-15 | Fully parse variant & class types | Mel |
| 2025-06-15 | `void` for parameter-less functions (I keep forgetting I'm not writing C++ an... | Mel |
| 2025-06-15 | Remove confusion between function body and function with inline struct as ret... | Mel |
| 2025-06-15 | Shift `type` keyword in type declarations to right-hand assign side, for symm... | Mel |
| 2025-06-14 | Bare-declaration parsing and `for` and `while` for loops | Mel |
| 2025-06-14 | Don't choke on \n followed by EOF | Mel |
| 2025-06-14 | Disambiguate variable declaration and call/array access syntax with `var` + `... | Mel |
| 2025-06-12 | Parse most primitive types into tree | Mel |
| 2025-06-03 | Return, break, continue & defer statement parsing | Mel |
| 2025-06-03 | Fix wrong token used in `parse_expression_primary_group` | Mel |
| 2025-06-03 | Parse and lex ++, --, ** operators, with prefix and postfix handling | Mel |
| 2025-06-03 | Parse all 4 types of for-loops | Mel |
| 2025-06-01 | Function literal expressions | Mel |
| 2025-06-01 | Parse if/else if/else statements | Mel |
| 2025-05-31 | Parse blocks of statements as node | Mel |
| 2025-05-31 | Skip all statement ending tokens in one `parse_statement` iteration | Mel |
| 2025-05-31 | Keyword-less variable declaration parsing | Mel |
| 2025-05-23 | Lex boolean literals | Mel |
| 2025-05-21 | Basic expression parser with operator precedence and associativity | Mel |