aboutsummaryrefslogtreecommitdiff
path: root/ast.h
AgeCommit message (Expand)Author
2024-09-30Add datetime literal and testsBruce Hill
2024-09-27Simplify code by making `name := use ...` a Use AST instead of a DeclareBruce Hill
2024-09-18Support `use`ing .c files and .S files (assembly)Bruce Hill
2024-09-18Move Match() to the right placeBruce Hill
2024-09-18Move List reversal to the right placeBruce Hill
2024-09-18Deprecate linker directivesBruce Hill
2024-09-18Remove more dead codeBruce Hill
2024-09-17Perform topological ordering when compiling typedefs so users don't needBruce Hill
2024-09-15Add a Byte datatypeBruce Hill
2024-09-13Rename builtins/ -> stdlib/Bruce Hill
2024-09-13Move cord helper functions into their own fileBruce Hill
2024-09-12Fix up comprehensions so set comprehensions work and everything is a bitBruce Hill
2024-09-12Add postfix `!` operator for optionalsBruce Hill
2024-09-11Rename "Nil"->"Null" for consistencyBruce Hill
2024-09-11Optional enums (deprecated custom tag values)Bruce Hill
2024-09-11Add optional typesBruce Hill
2024-09-08Fix nearly every GCC warning and add __attribute__((pure/const)) whereBruce Hill
2024-09-04Disallow 'use' statements that aren't top levelBruce Hill
2024-08-22Overhaul of import syntax. Now everything uses `use`: `use foo`, `useBruce Hill
2024-08-18Deprecate `#` operator in favor of .length and fix up some issuesBruce Hill
2024-08-18Split BigIntType out of IntType and switch to using enums for the sizeBruce Hill
2024-08-13Partially working first draft of bigintsBruce Hill
2024-08-11Support channels with maximum sizeBruce Hill
2024-08-11Add channels and threadsBruce Hill
2024-08-10For tables, deprecate support for square bracket indexing and .defaultBruce Hill
2024-08-10Add Sets to the languageBruce Hill
2024-07-26Replace heap_str with GC_strdupBruce Hill
2024-07-13Add iterator functionsBruce Hill
2024-07-04Add 'defer'Bruce Hill
2024-07-04Add `!!` statement for printing textBruce Hill
2024-07-01Add math metamethods (__add, __sub, etc.)Bruce Hill
2024-06-13Split import/use into separate conceptsBruce Hill
2024-06-13Remove unused fields on ASTBruce Hill
2024-06-06Split header compilation into a separate functionBruce Hill
2024-05-18Add syntax for "inline C(...)"Bruce Hill
2024-05-12Deprecate interfaces (RIP)Bruce Hill
2024-05-12Simplify interfaces by requiring all functions are pointer methodsBruce Hill
2024-05-12WIP, but functional interfacesBruce Hill
2024-05-01Clean up 'when' syntaxBruce Hill
2024-04-30Improved syntax for optionalsBruce Hill
2024-04-23Support struct literals as constantsBruce Hill
2024-04-17Use leading underscore for file-local variables and functions instead ofBruce Hill
2024-04-10Fix corecursive functions and global variablesBruce Hill
2024-04-02Add comparison operator <> and array method to sort by a customBruce Hill
2024-03-26Improve codegen for table/array iteration by inlining the iterationBruce Hill
2024-03-24Print ASTs as XML instead of janky custom syntaxBruce Hill
2024-03-24Implement 'extern' functionalityBruce Hill
2024-03-19Improvements to module importsBruce Hill
2024-03-18More file commentsBruce Hill
2024-03-17Improve comprehensions for both arrays and tablesBruce Hill