aboutsummaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)Author
2024-11-02Make Text:find() return an optional intBruce Hill
2024-10-29Add file globbingBruce Hill
2024-10-27Finish deprecating stack refs with &Bruce Hill
2024-10-27Update DateTime API to have separate methods for getting each componentBruce Hill
instead of get(...)
2024-10-09Change function syntax from `func(args)->ret` to `func(args -> ret)`Bruce Hill
2024-10-09Add a test for mutating closed-over variables in a defer statementBruce Hill
2024-10-08Add a test for optionals to ensure they size correctlyBruce Hill
2024-10-04Deprecate readonly pointers for nowBruce Hill
2024-09-30Add datetime literal and testsBruce Hill
2024-09-24Rename `from_unsafe_text` to `without_escaping`Bruce Hill
2024-09-24Support Int(yes/no)Bruce Hill
2024-09-16Fix `not x` for optional valuesBruce Hill
2024-09-16Deprecate :or_else()/:or_fail()/:or_exit() in favor of the `or` operatorBruce Hill
2024-09-16Have Text:matches() return an optional array of matchesBruce Hill
2024-09-16Add some basic pattern matching/suffix code for pathsBruce Hill
2024-09-15Overhaul of how libraries are installedBruce Hill
2024-09-15Update Inline C syntax and documentation/testsBruce Hill
2024-09-15Add optional:or_exit(...)Bruce Hill
2024-09-15Fix up `if var := ...:` in ternary expressions and optional checkingBruce Hill
logic
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
possible.
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
more clean
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