aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2024-11-03Add wrapping plus/minus for fixed-size integersBruce Hill
2024-11-03Fix error messageBruce Hill
2024-11-03Add a `repeat` keywordBruce Hill
2024-11-03Minor fixBruce 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-11-02Update headerBruce Hill
2024-11-02Make Text:find() return an optional intBruce Hill
2024-10-31Remove unused args for end_test()Bruce Hill
2024-10-31Tweak doctest output so it outputs source infoBruce Hill
2024-10-30Fix type members not appearing in headers for declared valuesBruce Hill
2024-10-30Fix for methods not appearing in headersBruce Hill
2024-10-30Make compiler output spam a little dimmerBruce Hill
2024-10-30Organize typedef headers so the typedefs come before the namespaceBruce Hill
2024-10-30Fix header inline functions to use `extern inline` and some GCC magicBruce Hill
2024-10-30Bugfix for empty struct typeinfosBruce Hill
2024-10-30Remove redundant warningsBruce Hill
2024-10-29Fix up some GCC compiler flag options for LTO and inliningBruce Hill
2024-10-29Add -Werror to tomo compile flagsBruce Hill
2024-10-29Add file globbingBruce Hill
2024-10-28Add PATCHBruce Hill
2024-10-27Update docs to reflect deprecation of "&" stack referencesBruce Hill
2024-10-27Fix up examples to no longer use '&'Bruce Hill
2024-10-27Fixes for places that used Text$find()Bruce Hill
2024-10-27Disallow mutation of read-only viewsBruce Hill
2024-10-27Finish deprecating stack refs with &Bruce Hill
2024-10-27Deprecate "&" for stack referencesBruce Hill
2024-10-27Remove an unnecessary ARRAY_COPY()Bruce Hill
2024-10-27Bugfix: for array:find() and array:sorted() and array:binary_search(),Bruce Hill
2024-10-27Update DateTime API to have separate methods for getting each componentBruce Hill
2024-10-27Add an includeBruce Hill
2024-10-25Minor imports cleanupBruce Hill
2024-10-25Move unistr header out of tomo headerBruce Hill
2024-10-10Fix issue with non-ID chars in filenamesBruce Hill
2024-10-09Clean up codegen for `when` statementsBruce Hill
2024-10-09Update readmeBruce Hill
2024-10-09Update exampleBruce Hill
2024-10-09Update docs to standardize function signature formattingBruce Hill
2024-10-09Update docsBruce Hill
2024-10-09Change function syntax from `func(args)->ret` to `func(args -> ret)`Bruce Hill
2024-10-09Bugfix for `1e-2-3`Bruce Hill
2024-10-09Tidy up some function annotations to use func(x,y:Foo) syntax instead ofBruce Hill
2024-10-09Get rid of `fn:func(Int,Num)` syntax (unnamed arguments)Bruce Hill
2024-10-09Add a test for mutating closed-over variables in a defer statementBruce Hill
2024-10-09Fix closure handling behavior for `defer` so that it can mutateBruce Hill
2024-10-09Bugfix for `defer` using enclosing scopeBruce Hill
2024-10-08Document reductionsBruce Hill
2024-10-08Disallow reductions over tables (use .keys or .values instead)Bruce Hill
2024-10-08Support reductions over setsBruce Hill
2024-10-08Bugfix for reductions over conditional comprehensions that have no values.Bruce Hill