aboutsummaryrefslogtreecommitdiff
path: root/parse.c
AgeCommit message (Expand)Author
2024-09-18Support `use "foo.h"`Bruce Hill
2024-09-18Clean up parser forward declarationsBruce Hill
2024-09-18Deprecate dead codeBruce Hill
2024-09-18Deprecate linker directivesBruce Hill
2024-09-18Code cleanupBruce Hill
2024-09-18Clean up some dead codeBruce Hill
2024-09-16Bugfix for string escaping in printoutsBruce Hill
2024-09-15Overhaul of how libraries are installedBruce Hill
2024-09-15Update Inline C syntax and documentation/testsBruce Hill
2024-09-15Add a Byte datatypeBruce Hill
2024-09-13Rename builtins/ -> stdlib/Bruce Hill
2024-09-13Rename builtins to use plurals when appropriateBruce Hill
2024-09-13Code cleanupBruce Hill
2024-09-13Move cord helper functions into their own fileBruce Hill
2024-09-12Fix up comprehensions so set comprehensions work and everything is a bitBruce Hill
2024-09-12Automatic promotion to single-argument enum tags with a unique typeBruce Hill
2024-09-12Change unicode escape to \{name} and add escape for ANSI CSI sequences:Bruce Hill
2024-09-12Allow trailing whitespace in parens expressionsBruce Hill
2024-09-12Add postfix `!` operator for optionalsBruce Hill
2024-09-11Rename "Nil"->"Null" for consistencyBruce Hill
2024-09-11Optional enums (deprecated custom tag values)Bruce Hill
2024-09-11Support `if x := blah: ...`Bruce Hill
2024-09-11Add optional typesBruce Hill
2024-09-09Fix path escapesBruce Hill
2024-09-09For parsing paths, use nested parens: (./foo), also add some methodsBruce Hill
2024-09-09More path stuff including some methodsBruce Hill
2024-09-09Initial working versionBruce Hill
2024-09-08Fix nearly every GCC warning and add __attribute__((pure/const)) whereBruce Hill
2024-09-07Add unicode name escapes: \U[penguin]Bruce Hill
2024-09-06Don't parse suffixes on interpolationsBruce Hill
2024-09-06Remove unused 'import' keywordBruce Hill
2024-09-06Print stack trace if $TOMO_STACKTRACE is setBruce Hill
2024-09-06Add Shell dsl typeBruce Hill
2024-09-05Rename table_t -> Table_tBruce Hill
2024-09-05Clean up some importsBruce Hill
2024-09-04Disallow 'use' statements that aren't top levelBruce Hill
2024-09-03Syntax overhaul (comments back to `#`, print statments to `!!`),Bruce Hill
2024-09-02Initial WIP first pastBruce Hill
2024-08-25Minor cleanupBruce Hill
2024-08-23Bugfix for parsing intsBruce Hill
2024-08-22Overhaul of import syntax. Now everything uses `use`: `use foo`, `useBruce Hill
2024-08-19Add postfix conditionals for return/skip/stop/function callsBruce Hill
2024-08-19Add -deg suffix: `90deg` for specifying degrees. Also fixed percentBruce Hill
2024-08-18Deprecate `#` operator in favor of .length and fix up some issuesBruce Hill
2024-08-18Add primality testing and next_prime()/prev_prime()Bruce Hill
2024-08-18Improved syntax for dollar-string literalsBruce Hill
2024-08-18Split BigIntType out of IntType and switch to using enums for the sizeBruce Hill
2024-08-17Support semicolon in `{:K:V; ...}`Bruce Hill
2024-08-13Partially working first draft of bigintsBruce Hill
2024-08-12Put back fallbackBruce Hill