aboutsummaryrefslogtreecommitdiff
path: root/src/parse.c
AgeCommit message (Expand)Author
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
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
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
2025-04-03Deprecate heap_strfBruce Hill
2025-04-02Syntax change: table types are now: `{K=V; default=...}` and tablesBruce Hill
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
2025-03-31Deprecate do_begin/do_endBruce Hill
2025-03-30Prepend `do_begin` statements to `do` statements, don't put them in aBruce Hill
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
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
2025-03-25Add a special case for '???'Bruce Hill
2025-03-25Make docstring tests use an actual expression AST instead of textBruce Hill
2025-03-25Parser errors should use USE_COLOR as wellBruce Hill
2025-03-25Fix parsing issue: `[1,2,3] _max_ [3,4,5]` was parsing as `_max_[..]`Bruce Hill
2025-03-24Bugfix for parsing escapesBruce Hill
2025-03-21Move files into src/ and build into build/Bruce Hill