aboutsummaryrefslogtreecommitdiff
path: root/compile.c
AgeCommit message (Collapse)Author
2024-09-11Fix threads and integersoptionalsBruce Hill
2024-09-11Use optionals for iteratorsBruce Hill
2024-09-11Bugfix big int literalsBruce Hill
2024-09-11Change *:from_text() methods to return optional values and set up CLIBruce Hill
parsing to use that approach
2024-09-11Fix optional boolsBruce Hill
2024-09-11Rename channel_t -> Channel_t for consistencyBruce Hill
2024-09-11Rename closure_t -> Closure_t for consistencyBruce Hill
2024-09-11Rename "Nil"->"Null" for consistencyBruce Hill
2024-09-11Optionals for threadsBruce Hill
2024-09-11Optional channels (plus fixed some channel bugs)Bruce Hill
2024-09-11Optional C StringsBruce Hill
2024-09-11Optional enums (deprecated custom tag values)Bruce Hill
2024-09-11Optional structsBruce Hill
2024-09-11Optional fixed-size intsBruce Hill
2024-09-11Support conditionals for tables/arrays/setsBruce Hill
2024-09-11Support `if x := blah: ...`Bruce Hill
2024-09-11Add optional typesBruce Hill
2024-09-09Fix up some stuff with path escapingBruce Hill
2024-09-09remove debug codeBruce Hill
2024-09-09Clean up CLI path arraysBruce Hill
2024-09-09Correctly clean up CLI args that are pathsBruce Hill
2024-09-09Add mktemp functionalityBruce Hill
2024-09-09Initial working versionBruce Hill
2024-09-08Fix non-base10 integer literalsBruce Hill
2024-09-08Bugfix for default arguments not supporting enclosing typesBruce Hill
2024-09-08Fix nearly every GCC warning and add __attribute__((pure/const)) whereBruce Hill
appropriate
2024-09-07USAGE and HELP need an underscore prefix so they're not imported intoBruce Hill
other files. Also fixed up dependency tool so it works good now
2024-09-06Support using text in conditionalsBruce Hill
2024-09-06Support 'when' statements as expressionsBruce Hill
2024-09-06Add Shell dsl typeBruce Hill
2024-09-06Actual fix for incref issueBruce Hill
2024-09-06Speculative fix for some incref issuesBruce Hill
2024-09-06Bugfix for `"":join(table.keys)`Bruce Hill
2024-09-05Add commentBruce Hill
2024-09-05Revert "Use stack() macro" (actually needs to work this way)Bruce Hill
This reverts commit ed36765b4239d7af89a06773ad4ff1154d5344be.
2024-09-05Use stack() macroBruce Hill
2024-09-05Replace $Type with Type$info for builtin TypeInfosBruce Hill
2024-09-05Rename table_t -> Table_tBruce Hill
2024-09-05Rename array_t -> Array_tBruce Hill
2024-09-05Slightly clean up CLI usage error code for no-argument programsBruce Hill
2024-09-05Rework CLI compilation so that all of the argument parsing is written toBruce Hill
the .tm.c file and the runner program is *just* a single function call to the function that parses args and runs the main function. Also improved some CLI usage error code
2024-09-05Add support for custom HELP for CLI toolsBruce Hill
2024-09-05Fix 'empty' clause for integer iterationBruce Hill
2024-09-05For big or arbitrarily big integers not known to be constant, do fullBruce Hill
Int$plus(a,b) logic so it's definitely correct and doesn't error.
2024-09-05Improve codegen for loops by not adding extra braces and just using theBruce Hill
integer literal for 64-bit ints when iterating over a numeric value
2024-09-05Add early outs for (or) and (and) reducersBruce Hill
2024-09-05Add iteration-over-comprehension optimizationBruce Hill
2024-09-04Better enum messaging for CLI arg parsingBruce Hill
2024-09-04Support parsing enums (without members)Bruce Hill
2024-09-04Unify parsing code to correctly handle parsing integers and numbers withBruce Hill
a &success boolean. Check for overflow as well.