aboutsummaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)Author
2024-08-13Fix some edge casesBruce Hill
2024-08-13Remove testBruce Hill
2024-08-13FixesBruce Hill
2024-08-13More fixesBruce Hill
2024-08-13Partially working first draft of bigintsBruce Hill
2024-08-12Fix old syntaxBruce Hill
2024-08-12Fix deadlock issueBruce Hill
2024-08-11Support channels with maximum sizeBruce Hill
2024-08-11Add channels and threadsBruce Hill
2024-08-10Overhaul of operator metamethodsBruce Hill
2024-08-10For tables, deprecate support for square bracket indexing and .defaultBruce Hill
values, replacing them with a `:bump()` function for tables with numeric values. This means that counters can be implemented easily without the need to mask complexity.
2024-08-10Add Sets to the languageBruce Hill
2024-08-10Add test for iteratorsBruce Hill
2024-08-10Add test for rangesBruce Hill
2024-08-08Change table removal function to use values instead of referencesBruce Hill
2024-07-20Micro optimization for iterating over array rangesBruce Hill
2024-07-20Deprecate array:pairs() and switch iterator functions to use enumsBruce Hill
2024-07-14Support nested lambda closuresBruce Hill
2024-07-13Add array:pairs()Bruce Hill
2024-07-10Add array:to() to split out functionality of array:from()Bruce Hill
2024-07-10Replace array:slice() with array:from(first, last) and array:by(step)Bruce Hill
2024-07-05Tweak syntax for debug printsBruce Hill
2024-07-04Fixes for defer statements in lambdasBruce Hill
2024-07-04Add 'defer'Bruce Hill
2024-07-04Add `!!` statement for printing textBruce Hill
2024-07-04Change metamethod namesBruce Hill
2024-07-04Add __length and __negative metamethodsBruce Hill
2024-07-01Add multiline string literal testBruce Hill
2024-07-01Add test for optionalsBruce Hill
2024-07-01Add test for metamethodsBruce Hill
2024-06-18Fix array_lvalueBruce Hill
2024-06-18Add test for array member assignmentBruce Hill
2024-06-17Fix 'use' test to use 'import' insteadBruce Hill
2024-05-23Refine the parsing of blocks so it's always ':' [inline-block] [indent ↵Bruce Hill
indented-block]
2024-05-23Support 'while when'Bruce Hill
2024-05-20Hook up Text.has(), Text.trimmed(), Text.without()Bruce Hill
2024-05-14Support corecursive structsBruce Hill
2024-05-01Clean up 'when' syntaxBruce Hill
2024-04-30Improved syntax for optionalsBruce Hill
2024-04-28Syntax tweak: use ':' for blocksBruce Hill
2024-04-23Add constructor/casting for ints and numsBruce Hill
2024-04-22Add Num.mix()Bruce Hill
2024-04-21Better imports for typesBruce Hill
2024-04-19Add heapify(), heap_push(), and heap_pop()Bruce Hill
2024-04-13Change table syntax to {key:value} instead of {key=>value}Bruce Hill
2024-04-12Introducing the main() functionBruce Hill
2024-04-10Add corecursive func testBruce Hill
2024-04-02Add test for array:sample()Bruce Hill
2024-04-02Add array:sorted()Bruce Hill
2024-04-02Add comparison operator <> and array method to sort by a customBruce Hill
comparison function