aboutsummaryrefslogtreecommitdiff
path: root/test/reductions.tm
AgeCommit message (Collapse)Author
2025-09-21Deprecate optional '?' postfix operatorBruce Hill
2025-04-06Allow uninitialized variables when there's a sensible empty valueBruce Hill
(defaults to empty/zero value)
2025-04-06No more colons for blocksBruce Hill
2025-04-06Expand reducers so they support stuff like `(+.abs(): nums)` andBruce Hill
`(==.length: texts)`
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 testsBruce Hill
2025-04-04First working compile of refactor to add explicit typing to declarationsBruce Hill
and support untyped empty collections and `none`s
2025-03-25Make docstring tests use an actual expression AST instead of textBruce Hill
matching
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-02Support reductions for comparison operators like == and <Bruce Hill
2024-11-02Change reducers to use (OP: ...) syntax and return an optional valueBruce 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-05Add early outs for (or) and (and) reducersBruce Hill
2024-04-28Syntax tweak: use ':' for blocksBruce Hill
2024-04-12Introducing the main() functionBruce Hill
2024-03-07More testsBruce Hill