aboutsummaryrefslogtreecommitdiff
path: root/src/compile.c
AgeCommit message (Collapse)Author
2025-08-24Finally, split compile.c into compile/expressions.cBruce Hill
2025-08-24Split declarations into a fileBruce Hill
2025-08-24Remove vim modelinesBruce Hill
2025-08-24Split CLI into its own fileBruce Hill
2025-08-24Move method callsBruce Hill
2025-08-24Move int code to its fileBruce Hill
2025-08-24Move optional stuff into its fileBruce Hill
2025-08-24Split binops into fileBruce Hill
2025-08-24Rename promotion -> promotionsBruce Hill
2025-08-24Split out blocks into their own fileBruce Hill
2025-08-24Shift some code around.Bruce Hill
2025-08-24More splitting out into separate files.Bruce Hill
2025-08-24Move method calls into separate filesBruce Hill
2025-08-24Move function logic into functions filesBruce Hill
2025-08-24Further split outBruce Hill
2025-08-24Split into more files: promotion, sets, tables, pointers, functions.Bruce Hill
2025-08-24Pluralize filenamesBruce Hill
2025-08-24Move more stuff into structs/enums filesBruce Hill
2025-08-24Move structs/enums into the right folderBruce Hill
2025-08-24Split list compilation logic into its own file.Bruce Hill
2025-08-24Constructors and functions with underscore arguments should be allowed to be ↵Bruce Hill
called, but only if the underscore arguments are not provided but are implicit from the default values. Same for constructing structs with private fields.
2025-08-23Minor cleanupBruce Hill
2025-08-23Autoformat everything with clang-formatBruce Hill
2025-08-23Better error messageBruce Hill
2025-08-23Lots of cleanupsBruce Hill
2025-08-17Fix List.slice()Bruce Hill
2025-08-17Bugfix: added support for Tomo identifiers that are C keywordsBruce Hill
2025-08-17Major improvements to type inference to support `JSON({"key"=yes,Bruce Hill
"key2"=[1,2,{"ok"=JSON.Null}]})` and similar fancy type inference stuff.
2025-08-16Improved parsing and prefix/suffix matching using a `remainder`Bruce Hill
parameter
2025-08-10Add full protection against accessing fields and methods that start withBruce Hill
underscores outside of the scope where the type is defined.
2025-08-09Deprecate cords from the gc library in favor of dogfooding Text from theBruce Hill
Tomo standard library.
2025-07-11Add more `#line` directives to make various failures give more accurateBruce Hill
stack traces
2025-05-25Optimize codegen for enums: no longer bother with a struct wrapper, butBruce Hill
just use a C enum type instead. This will make it easier to use externally defined enums in the future.
2025-05-25Bugfix for mutation while iteratingBruce Hill
2025-05-25Improved codegen for 'when' statementsBruce Hill
2025-05-25Code cleanupBruce Hill
2025-05-25Add extra check to make sure extend is extending a type and notBruce Hill
something else
2025-05-25Add a check to ensure that Extend is extending a recognized type.Bruce Hill
2025-05-21Added Set infix operations, as well as Table.with_fallback() and fixedBruce Hill
some bugs with update assignment.
2025-05-20Add more advanced configuration options to modules.ini and supportBruce Hill
automatically downloading and installing from it.
2025-05-17Add --version flag for executables and more documentation.Bruce Hill
2025-05-17Add `modules.ini` file for import aliases, as well as default aliasesBruce Hill
for the built-in modules.
2025-05-11Add new system for tracking versions.Bruce Hill
2025-05-09Bugfix for lang infosBruce Hill
2025-05-05Get rid of single-file headers for libraries and just include each .tmBruce Hill
file's .build/*.tm.h file individually.
2025-05-05Fix some permission stuff to make it more seamless to install toBruce Hill
directories the user doesn't own (e.g. /usr/local, owned by root)
2025-05-03Bugfix for promotions in comparisonsBruce Hill
2025-05-03Deprecate function name registering and printing the function's nameBruce Hill
2025-05-02Bugfix for integer math between Int and fixed-width int, where Int wasBruce Hill
the second operand
2025-04-30Update compiler to use randomly generated unique-per-file symbolBruce Hill
suffixes instead of needing to rename symbols with objcopy