aboutsummaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)Author
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
as an unnamed import
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-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
support placeholders
2024-09-03Change pattern syntax from [..pat] to {pat}Bruce Hill
2024-09-03Syntax overhaul (comments back to `#`, print statments to `!!`),Bruce Hill
using `$/.../` for patterns and using a DSL for patterns
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
2024-09-03Update docsBruce Hill
2024-09-02Add text slicingBruce Hill
2024-09-02Fix some stuff around Text:find() and text indexingBruce Hill
2024-09-02Add Text:find_all()Bruce Hill
2024-09-02Fix splitting an empty stringBruce Hill
2024-09-02Add Text:join() and testsBruce Hill
2024-09-02Add Text:split() and use that with an empty pattern instead of Text:clusters()Bruce Hill
2024-09-02Add Text:lines()Bruce Hill
2024-09-02Improve testBruce Hill
2024-09-02WIP fixes for synthetic graphemes and adding some text conversionBruce Hill
methods
2024-09-02Fix testBruce Hill
2024-09-02Text fixesBruce Hill