aboutsummaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Expand)Author
2024-09-15Fix up file testBruce Hill
2024-09-15Add a Byte datatypeBruce Hill
2024-09-15Improve automatic text quoting so it minimizes escape sequences whenBruce Hill
2024-09-12Make functions print with `func name(...)->... [file:line]` infoBruce Hill
2024-09-12Fix up comprehensions so set comprehensions work and everything is a bitBruce Hill
2024-09-12Implement optional hashing/equality/comparisonsBruce Hill
2024-09-12For single-member structs/enums, don't print the member nameBruce Hill
2024-09-12Change unicode escape to \{name} and add escape for ANSI CSI sequences:Bruce Hill
2024-09-12Table:get() now uses optional values instead of default or failure modesBruce Hill
2024-09-12Add postfix `!` operator for optionalsBruce Hill
2024-09-11Add optional:or_else(fallback) and optional:or_fail(message)Bruce Hill
2024-09-11Fix optional integer promotionBruce Hill
2024-09-11Use optionals for iteratorsBruce Hill
2024-09-11More testsBruce 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-11Support `if x := blah: ...`Bruce Hill
2024-09-11Use optional ints in the array find()/first() APIBruce Hill
2024-09-11Add optional typesBruce Hill
2024-09-09Test nesting parens and escapesBruce Hill
2024-09-09Restore path interpolationBruce Hill
2024-09-09Ensure more rigoroous cleanup and validation of pathsBruce Hill
2024-09-09Add Text.starts_with() and Text.ends_with()Bruce Hill
2024-09-09Fix up some path logicBruce Hill
2024-09-09More testsBruce Hill
2024-09-09Add mktemp functionalityBruce Hill
2024-09-07Add unicode name escapes: \U[penguin]Bruce Hill
2024-09-06Support 'when' statements as expressionsBruce Hill
2024-09-06Fix testBruce Hill
2024-09-06Text overhaulBruce Hill
2024-09-06Add Text.trim()Bruce Hill
2024-09-05Update 'use' test to include a '../examples/vectors.tm' import as wellBruce Hill
2024-09-05For big or arbitrarily big integers not known to be constant, do fullBruce Hill
2024-09-05Add early outs for (or) and (and) reducersBruce Hill
2024-09-05Fix stability of concatenationBruce Hill
2024-09-04Add Text:repeat()Bruce Hill
2024-09-04Add Text.map(pat, fn)Bruce Hill
2024-09-04Add Text:matches() for convenience and performanceBruce Hill
2024-09-03Add recursive mode to text replacement and update docsBruce Hill
2024-09-03Clean up text replacement API to use backrefs instead of match_chain()Bruce Hill
2024-09-03Add Text.replace_all({Pattern:Text}) and tweak API for replacement toBruce Hill
2024-09-03Change pattern syntax from [..pat] to {pat}Bruce Hill
2024-09-03Syntax overhaul (comments back to `#`, print statments to `!!`),Bruce Hill
2024-09-03Deprecate `Where` and change channel API to use a boolean `front` valueBruce Hill
2024-09-03Better behavior for invalid character namesBruce Hill
2024-09-03Fix codepoint names by falling back to block namesBruce Hill
2024-09-03Fix for missing codepoint namesBruce Hill