aboutsummaryrefslogtreecommitdiff
path: root/test/tables.tm
AgeCommit message (Expand)Author
2025-09-21Deprecate optional '?' postfix operatorBruce Hill
2025-09-21Deprecate setsBruce Hill
2025-07-12Doctests now use equality checking instead of text comparisonsBruce Hill
2025-07-11Use `assert` more in tests to give better error messagesBruce Hill
2025-04-06Merge branch 'main' into no-colonsBruce Hill
2025-04-06Change Set syntax from {x} to |x|Bruce Hill
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-05Fix up some tests and type_or_typeBruce Hill
2025-04-05Fix up testsBruce Hill
2025-04-04Misc fixesBruce Hill
2025-04-04First working compile of refactor to add explicit typing to declarationsBruce Hill
2025-04-02Syntax change: table types are now: `{K=V; default=...}` and tablesBruce Hill
2025-03-25Make docstring tests use an actual expression AST instead of textBruce Hill
2025-01-12Change table syntax to `{key=value}` and `{:K,V}`/`{K,V}`Bruce Hill
2024-12-26Change table hashing and comparison logic to be *unordered*, but stillBruce Hill
2024-12-18Revert "Deprecate "&" for stack references"Bruce Hill
2024-12-07Rename "NONE" to "none"Bruce Hill
2024-11-30Bring back `table[key]` syntaxBruce Hill
2024-11-24Rename "NULL" to "NONE"Bruce Hill
2024-11-21Add `NULL` as a syntax for null values.Bruce Hill
2024-11-09Make the compiler stricter about not promoting local value variables toBruce Hill
2024-09-16Deprecate :or_else()/:or_fail()/:or_exit() in favor of the `or` operatorBruce Hill
2024-09-12Table:get() now uses optional values instead of default or failure modesBruce Hill
2024-09-11Add optional typesBruce Hill
2024-08-18Deprecate `#` operator in favor of .length and fix up some issuesBruce Hill
2024-08-18Improved syntax for dollar-string literalsBruce Hill
2024-08-10For tables, deprecate support for square bracket indexing and .defaultBruce Hill
2024-08-10Add Sets to the languageBruce Hill
2024-08-08Change table removal function to use values instead of referencesBruce Hill
2024-04-30Improved syntax for optionalsBruce Hill
2024-04-28Syntax tweak: use ':' for blocksBruce Hill
2024-04-13Change table syntax to {key:value} instead of {key=>value}Bruce Hill
2024-04-12Introducing the main() functionBruce Hill
2024-04-02Add comparison operator <> and array method to sort by a customBruce Hill
2024-03-17Add tests for nested comprehensionsBruce Hill
2024-03-17Improve comprehensions for both arrays and tablesBruce Hill
2024-03-03Rename Str -> TextBruce Hill
2024-03-03Definitively go with "Int" and "Num" over "Int64" and "Num64", plus addBruce Hill
2024-02-25Add test for table iterationBruce Hill
2024-02-25Add tests for '#' on collectionsBruce Hill
2024-02-25Table field access for .keys, .values, .default, .fallbackBruce Hill