aboutsummaryrefslogtreecommitdiff
path: root/src/ast.c
AgeCommit message (Collapse)Author
2025-12-28Change autoformatter to no longer allow single-line functionsBruce Hill
2025-12-08Add checks for unused variablesBruce Hill
2025-11-23Added Metadata section for files instead of _HELP and _USAGEBruce Hill
2025-10-05Deprecate `deserialize` keyword and `.serialized()` methodBruce Hill
2025-10-04Deprecate `extend`Bruce Hill
2025-10-04Fix for nested anonymous enums (visit them recursively in leaf-firstBruce Hill
traversal)
2025-10-01Convert to using more zero values for `none`Bruce Hill
2025-09-24Revert "Deprecate `defer`"Bruce Hill
This reverts commit 7e3e245f6809946ea06ef1998bcabb7e0902fbd7.
2025-09-21Deprecate `defer`Bruce Hill
2025-09-21Deprecate `>> x ... = val` form of doctests and rename them to 'debugdoctests-to-debuglogBruce Hill
logs', also add multi-expression support
2025-09-21Deprecate optional '?' postfix operatorBruce Hill
2025-09-21Deprecate `extern` keywordBruce Hill
2025-09-21Deprecate setsBruce Hill
2025-09-21Got inlne enums working in most placesBruce Hill
2025-09-20WIP on inline enumsBruce Hill
2025-09-06Code cleanupBruce Hill
2025-09-01FixesformatterBruce Hill
2025-08-29Improvements to text and inline C code formatting/parsingBruce Hill
2025-08-26Formatting for reductionsBruce Hill
2025-08-26Formatting for min/max and cleanup for ints/numsBruce Hill
2025-08-25Better support for binops in formatterBruce Hill
2025-08-25Update file header commentsBruce Hill
2025-08-24Remove vim modelinesBruce Hill
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-04-28Remove remaining printf referencesBruce Hill
2025-04-21Preserve original number literal in s-expressionBruce Hill
2025-04-21Switch from XML to s-expressions and add --parse flag for printing themBruce Hill
2025-04-21Add `assert`Bruce Hill
2025-04-15Deprecate `auto`Bruce Hill
2025-04-06Rename Array -> List in all code and docsBruce Hill
2025-04-06Improved inline C code: now uses `C_code` keyword and supportsBruce Hill
interpolation with @
2025-04-06Remove dead code for handling Declare statments with Use insideBruce Hill
2025-04-06Deprecate `!!` print statementBruce Hill
2025-04-06Improve support for inferring the specific type of the `self` value in aBruce Hill
method call.
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-03Fix textual representation of table typesBruce 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-30Deprecate built-in Moment datatype in favor of a `time` moduleBruce 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-25Make docstring tests use an actual expression AST instead of textBruce Hill
matching
2025-03-21Move files into src/ and build into build/Bruce Hill