aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-09-05Remove unused 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-05Trim excess blank lines before feeding to indentBruce 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-05Do the extremely obvious optimization of checking if two pieces of dataBruce Hill
are at the same location before bothering to compare them
2024-09-05Update to reflect code growthBruce Hill
2024-09-05Clear out some CRLF crufttext2Bruce Hill
2024-09-05Fix stability of concatenationBruce Hill
2024-09-05Be extra correct about prefix codepointsBruce Hill
2024-09-05Clean up some importsBruce Hill
2024-09-05Dynamically grow synthetic grapheme arrayBruce Hill
2024-09-05Fix up handling of synthetic graphemes, also document how they workBruce Hill
2024-09-04Better enum messaging for CLI arg parsingBruce Hill
2024-09-04Add Text:repeat()Bruce Hill
2024-09-04Add Text.map(pat, fn)Bruce Hill
2024-09-04Document CLI 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.
2024-09-04Fix array CLI argumentsBruce Hill
2024-09-04Improve command line parsing (no more cords)Bruce Hill
2024-09-04Document ask()Bruce Hill
2024-09-04Add ask() as a way to get user inputBruce Hill
2024-09-04Remove readline dependencyBruce Hill
2024-09-04Add automatic `--help` to print usageBruce Hill
2024-09-04Document {nl}Bruce Hill
2024-09-04Add nl/newline/clrf patternBruce Hill
2024-09-04Fix const correctnessBruce Hill
2024-09-04Remove unused code path for `>> f := use ./foo.tm`Bruce Hill
2024-09-04Disallow 'use' statements that aren't top levelBruce Hill
2024-09-04Minor codegen cleanupBruce Hill
2024-09-04Implicit filename for table gettingBruce Hill
2024-09-04For arrays, use implicit filename from macroBruce Hill
2024-09-04Improve codegen by making test() even more conciseBruce Hill
2024-09-04BugfixBruce Hill
2024-09-04Don't put __SOURCE_FILE__ in headerBruce Hill
2024-09-04Add method for getting a length-based string as TextBruce Hill
2024-09-04Document empty tables/arraysBruce Hill
2024-09-04Add Text:matches() for convenience and performanceBruce Hill
2024-09-04Clean up codegen so $Foo"..." comes out as foo$Foo("...") instead ofBruce Hill
Text("...")
2024-09-03Don't bold DSL textBruce Hill
2024-09-03Minor codegen cleanup Texts(...)Bruce Hill