about summary refs log tree commit diff
AgeCommit message (Expand)Author
2026-05-31Lower member access, subscription, ++/--/compound assigns on all lvalues HEAD mainMel
2026-05-30Define name resolution behavior, clean-up langauge object resolutionMel
2026-05-28Correct type modifier combinations and groupingMel
2026-05-28Add tests for function value passing and capturing closure behaviorMel
2026-05-28Allow no arguments for calls and constructsMel
2026-05-28Test runner should ignore any hidden files in test foldersMel
2026-05-28Use semicolon tokens as statement separatorsMel
2026-05-28Split endless and while loops into `loop` and `while`Mel
2026-05-26Fix typo in Goldbach exampleMel
2026-05-26Support multi-level closure capturesMel
2026-05-26Locate and pass through captured locals to stateful closuresMel
2026-05-26Lambda function emission, thin/fat calling conventions for (future) closed-ov...Mel
2026-05-25Add grammar definition documentMel
2026-05-24Power operator via runtime library implementationMel
2026-05-24Emit IR/C increment/decrement in expression positionMel
2026-05-24Support named-unnamed call and construction arguments and fields with final r...Mel
2026-05-24Emit c-header pragmas as includesMel
2026-05-24Make diagnostics generic over passes, condensing different error handlingMel
2026-05-19Break up large IR lowering functions into sub-functions to clean upMel
2026-05-19Simplify statement synthesis boilerplateMel
2026-05-19Add IR constructorsMel
2026-05-06Lowering pass test harness, and initial pass test suiteMel
2026-05-06Tests for new IR transpilerMel
2026-05-06Add Goldbach's conjecture Catskill code exampleMel
2026-05-06Add a few mininmal print functions to catboot core runtimeMel
2026-05-05Emit transpiled function bodies, blocks, statements, expressions, etc.Mel
2026-05-05Output transpiled function signatures and definitionsMel
2026-05-05Type transpilation passes 1 & 2Mel
2026-05-04Initial structure for transpiler IR translation unit processMel
2026-05-04Bump license year for touched filesMel
2026-05-04Remove previous source tree-based transpiler, wire in lowering passMel
2026-05-04Lift out any function closures in lowering pass 2Mel
2026-05-04Lower all styles of source loopsMel
2026-05-04Lower source compound assigns and inc/dec statementsMel
2026-05-04Lower source if + while + endless statementsMel
2026-05-04Lowering pass lexical scope trackingMel
2026-05-04Lower source expressions into simple IRMel
2026-05-04Initial lowering pass 2 implementation, create shells for source expressions ...Mel
2026-05-04Lower down structural (inline) type definitions into type objectsMel
2026-05-04FNV-1a hashing algorithmMel
2026-05-04Topologically sort types and their dependencies during lowering, report cyclesMel
2026-05-04Complete lowering pass 1, fully collect all top-level declarations and their ...Mel
2026-05-03IR lowering pass 1, function declarationsMel
2026-05-03Macro for empty leaf walking for IR visiting, re-formatMel
2026-05-03Lowering pass initial driver shellMel
2026-05-03Add basic test harness for IR testingMel
2026-05-03IR visit system and pretty printerMel
2026-05-03Intermediate representation taxonomyMel
2026-05-03Move tree visit definitions in visit.c to visit/tree.c for future consistencyMel
2026-05-03Rename tree nodes to add consistent prefix, de-node, clean-up namesMel