aboutsummaryrefslogtreecommitdiff
path: root/src/parse.c
AgeCommit message (Collapse)Author
2025-08-23Autoformat everything with clang-formatBruce Hill
2025-08-23Remove some unused importsBruce Hill
2025-08-09Deprecate cords from the gc library in favor of dogfooding Text from theBruce Hill
Tomo standard library.
2025-05-01Revert fix for empty set parsingBruce Hill
2025-05-01Bugfix for parsing error with nested setsBruce Hill
2025-04-30Update compiler to use randomly generated unique-per-file symbolBruce Hill
suffixes instead of needing to rename symbols with objcopy
2025-04-29Fix parser errBruce Hill
2025-04-29Improved error messageBruce Hill
2025-04-28Better error messageBruce Hill
2025-04-21Allow comprehensions inside parenthesesBruce Hill
2025-04-21Add `assert`Bruce Hill
2025-04-16Fixes to get the compiler to build with -O3Bruce Hill
2025-04-15Deprecate `auto`Bruce Hill
2025-04-12Replace addr2line with libbacktrace to get improved stack tracesBruce Hill
2025-04-07Add easter egg: `~colorized`Bruce Hill
2025-04-06Rename Array -> List in all code and docsBruce Hill
2025-04-06Make string escapes more normal: "\n" for newline, etc. Backticks can beBruce Hill
used to put in literal code without escape sequences.
2025-04-06Improved inline C code: now uses `C_code` keyword and supportsBruce Hill
interpolation with @
2025-04-06Add `continue` and `break` as aliases for `skip`/`stop`, also improveBruce Hill
keyword detection using a binary search
2025-04-06Allow uninitialized variables when there's a sensible empty valueBruce Hill
(defaults to empty/zero value)
2025-04-06Add a parser error for empty enum definitionsBruce Hill
2025-04-06Explicitly support optional `do` for `while` and `for` loopsBruce Hill
2025-04-06Optional 'then' after 'if'/'when' clausesBruce 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-06Re-implement multiple patterns for `when` 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-04Misc fixesBruce Hill
2025-04-04First working compile of refactor to add explicit typing to declarationsBruce Hill
and support untyped empty collections and `none`s
2025-04-03Allow specifying args like `func foo(xs:[Int] = [])`Bruce Hill
2025-04-03Allow using an untyped empty array/set/table literal for places whereBruce Hill
the expected type is known
2025-04-03Deprecate heap_strfBruce Hill
2025-04-02Syntax change: table types are now: `{K=V; default=...}` and tablesBruce Hill
use `{:K=V, ...; default=...}`
2025-04-01Moved RNG out of the compiler and into a standalone libraryBruce Hill
2025-04-01Move patterns into a moduleBruce Hill
2025-03-31Remove threads and mutexed data from the language in favor of aBruce Hill
module-based approach
2025-03-31Deprecate do_begin/do_endBruce Hill
2025-03-30Prepend `do_begin` statements to `do` statements, don't put them in aBruce Hill
separate block
2025-03-30Deprecate built-in Moment datatype in favor of a `time` moduleBruce Hill
2025-03-30Further support for .dylib files on mac by changing syntax for libraryBruce Hill
imports to `use -lfoo` instead of `use foo.so`
2025-03-30Fix some relative path stuffBruce Hill
2025-03-28Don't force inline C code to use ({...})Bruce Hill
2025-03-28Add compiler guards for GCC directivesBruce Hill
2025-03-28Remove uppercase octalBruce Hill
2025-03-27Phase out strchrnulBruce Hill
2025-03-27Deprecate custom printf specifiers in favor of print() function thatBruce Hill
uses _Generic() to generically convert any value to a string or print as a string.
2025-03-25Add a special case for '???'Bruce Hill