aboutsummaryrefslogtreecommitdiff
path: root/ast.c
AgeCommit message (Expand)Author
2025-03-15Overhaul of Path so it uses root and array of components instead ofBruce Hill
2025-03-10Add `convert` keyword for defining conversionsBruce Hill
2025-03-06Support 'when' for literal values with equality checkingBruce Hill
2025-02-12Print moment ASTsBruce Hill
2025-02-07Remove dead codeBruce Hill
2025-01-02Use `holding` blocks for mutexed data instead of lambdasBruce Hill
2025-01-02Replace threads with generic mutexed datastructures.Bruce Hill
2024-12-18Revert "Deprecate "&" for stack references"Bruce Hill
2024-12-06Improvements and fixes for assigning to table keysBruce Hill
2024-11-29Add serialization and deserializationBruce Hill
2024-11-24Clean up some more null->none renames and fix the documentation. AlsoBruce Hill
2024-11-08Improve reductions so they work better nested and also have bespoke codeBruce Hill
2024-11-05Deprecate bit-width integer/num literals in favor of using typeBruce Hill
2024-11-03Clean up behavior and syntax for unsigned bit shifts (<<<, >>>)Bruce Hill
2024-11-03Add unsigned integer shiftsBruce Hill
2024-11-03Add a `repeat` keywordBruce Hill
2024-11-02Change reducers to use (OP: ...) syntax and return an optional valueBruce Hill
2024-10-27Deprecate "&" for stack referencesBruce Hill
2024-10-09Change function syntax from `func(args)->ret` to `func(args -> ret)`Bruce Hill
2024-10-04Deprecate readonly pointers for nowBruce Hill
2024-09-27Simplify code by making `name := use ...` a Use AST instead of a DeclareBruce Hill
2024-09-18Deprecate linker directivesBruce Hill
2024-09-17Overhaul of header logic so it now uses topological ordering andBruce Hill
2024-09-17Perform topological ordering when compiling typedefs so users don't needBruce Hill
2024-09-13Rename builtins/ -> stdlib/Bruce Hill
2024-09-13Move cord helper functions into their own fileBruce 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-09-02Initial WIP first pastBruce 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-12Fix some COW bugs for arrays/tables/setsBruce Hill
2024-08-11Support channels with maximum sizeBruce Hill
2024-08-11Add channels and threadsBruce Hill
2024-08-10Overhaul of operator metamethodsBruce Hill
2024-08-10For tables, deprecate support for square bracket indexing and .defaultBruce Hill
2024-08-10Add Sets to the languageBruce Hill
2024-07-13Add iterator functionsBruce Hill
2024-07-04Check for newline between statements in blocksBruce Hill
2024-07-04Add 'defer'Bruce Hill
2024-07-04Add `!!` statement for printing textBruce Hill
2024-07-04Change metamethod namesBruce Hill
2024-07-01Add math metamethods (__add, __sub, etc.)Bruce Hill
2024-06-13Split import/use into separate conceptsBruce Hill