| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-12-29 | Add first bootstrapping transpiler test | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-12-28 | Expand bootstrap common library with generic Array and more String utility ↵ | Mel | |
| functions Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-08-24 | Parameterize/improve failure and check functions | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-08-05 | Add runtime library for catskill transpiled artifacts, wrapping main ↵ | Mel | |
| function with correct types Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-08-05 | Add core library for catskill transpiled source, output defined types in ↵ | Mel | |
| transpiler Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-08-05 | Add 'transpile' to test harness targets | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-08-05 | .gitignore all files starting with . and all input/output files | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-23 | Add rudimentary catskill-to-C transpiler (yay!) | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-23 | Add option to test suite to auto-adjust expected output in definition | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-22 | Remove ambiguity from construct expressions and if/for/while blocks | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-18 | Separate call/construct expression back into parts | Mel | |
| This makes it easier to decide whether subject should be interpreted as a type of expression. Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-18 | Add catboot test for simple types | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-10 | Fix nil-dereference in `parser_node_type_class` | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-10 | Display causing tokens lexeme directly from source for error messages | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-10 | Expand common string library with `String_View` and format macros | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-09 | Parse unary reference and dereference operators | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-09 | Rudimentary semi-recoverable parser panic mode | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-09 | Add NORETURN to failure functions, add `unreachable` | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-09 | Shorten token_span_to_line_span and reduce edge case errors in it | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-09 | Makefile pass arguments to run commands through ARGS="" | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-09 | Multi-error display and fix up finding line boundries | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-09 | Display human-readable, informative parser error messages w/ source snippet | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-06 | Print formatted lex token value next to token type | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-06 | Correct handling of empty block nodes | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-06 | Parse variadic parameters in function definitions | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-05 | Correctly recurse over self-containing non-homogenous postfix-type expressions | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-05 | Try (?) & must (!) expressions | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-04 | Print completed single test result | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-04 | Tree printer handle whitespace more consistently | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-04 | Do not remove failed test artifact file for inspection | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-04 | Argument parser for catboot tool, different command execution | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-04 | Test suite runner prototype for `catboot` | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-01 | Parse pragmas as free-standing statements, without attachment | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-07-01 | Remove older non-visit tree printing code | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-06-30 | Factor out translation unit includes to seperate header | Mel | |
| This allows both the usual build compiler and an LSP server like `clangd` to correctly locate symbols throughout every subunit. Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-06-30 | License project files under MPL-2.0 | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-06-30 | Re-format FOR_EACH macros as control structures | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-06-30 | Implement Visitor system for syntax tree, with re-written tree printer as ↵ | Mel | |
| first usage Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-06-24 | Parse Maybe (?) type | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-06-24 | Print member expression correctly | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-06-24 | Parse named arguments, thus enabling type constructions | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-06-15 | Fix disambiguation check between no-return function body & function ↵ | Mel | |
| returning inline struct Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-06-15 | Fully parse variant & class types | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-06-15 | `void` for parameter-less functions (I keep forgetting I'm not writing C++ ↵ | Mel | |
| anymore.. ^^') Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-06-15 | Remove confusion between function body and function with inline struct as ↵ | Mel | |
| return type Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-06-15 | Shift `type` keyword in type declarations to right-hand assign side, for ↵ | Mel | |
| symmetry with function declaration Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-06-14 | Prevent mmap of empty file | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-06-14 | Bare-declaration parsing and `for` and `while` for loops | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-06-14 | Don't choke on \n followed by EOF | Mel | |
| Signed-off-by: Mel <mel@rnrd.eu> | |||
| 2025-06-14 | Disambiguate variable declaration and call/array access syntax with `var` + ↵ | Mel | |
| `let` Signed-off-by: Mel <mel@rnrd.eu> | |||
