aboutsummaryrefslogtreecommitdiff
path: root/test/text.tm
AgeCommit message (Expand)Author
2025-04-06No more colons for blocksBruce Hill
2025-04-06Change method calls to use `foo.baz()` instead of `foo:baz()`Bruce Hill
2025-04-06Deprecate `!!` print statementBruce Hill
2025-04-05Fix up some tests and type_or_typeBruce Hill
2025-04-04Misc fixesBruce Hill
2025-04-04First working compile of refactor to add explicit typing to declarationsBruce Hill
2025-04-01Move patterns into a moduleBruce Hill
2025-03-25Make docstring tests use an actual expression AST instead of textBruce Hill
2025-03-17Add text width support and have that work for paddingBruce Hill
2025-03-11Remove some doctests where not neededBruce Hill
2025-03-07Add text padding functions: :left_pad(), :right_pad(), :middle_pad()Bruce Hill
2025-03-07Add proper language support for case operations on textBruce Hill
2025-02-07Bugfix and minor perf improvements for text concatenation with unstableBruce Hill
2025-01-12Change table syntax to `{key=value}` and `{:K,V}`/`{K,V}`Bruce Hill
2024-12-26Add text indexingBruce Hill
2024-12-19Add Text:reversed()Bruce Hill
2024-12-07Rename "NONE" to "none"Bruce Hill
2024-11-24Rename "NULL" to "NONE"Bruce Hill
2024-11-21Add `NULL` as a syntax for null values.Bruce Hill
2024-11-19Go back to stringifying integers/num32s/bytes without the typeBruce Hill
2024-11-19Rename `Text.utf8_bytes` back to `Text.bytes`Bruce Hill
2024-11-09Introduce a `Match` struct to represent pattern matching results, whichBruce Hill
2024-11-05Deprecate bit-width integer/num literals in favor of using typeBruce Hill
2024-11-04Update text API to use optional returns when applicableBruce Hill
2024-11-02Make Text:find() return an optional intBruce Hill
2024-10-27Finish deprecating stack refs with &Bruce Hill
2024-09-16Have Text:matches() return an optional array of matchesBruce Hill
2024-09-15Add a Byte datatypeBruce Hill
2024-09-15Improve automatic text quoting so it minimizes escape sequences whenBruce Hill
2024-09-12Change unicode escape to \{name} and add escape for ANSI CSI sequences:Bruce Hill
2024-09-09Add Text.starts_with() and Text.ends_with()Bruce Hill
2024-09-07Add unicode name escapes: \U[penguin]Bruce Hill
2024-09-06Fix testBruce Hill
2024-09-06Text overhaulBruce Hill
2024-09-06Add Text.trim()Bruce 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-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