aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)Author
2025-04-16Better error messageBruce Hill
2025-04-16Automatically add return for unreachable code blocks (following aBruce Hill
2025-04-16Bugfix for top-level variables in librariesBruce Hill
2025-04-16Fixes to get the compiler to build with -O3Bruce Hill
2025-04-15Make some compatibility fixes to make sure the compiler can fully buildBruce Hill
2025-04-15Deprecate `auto`Bruce Hill
2025-04-15Fix some .so hardcodingBruce Hill
2025-04-15Change compilation configuration so Tomo is fully capable of runningBruce Hill
2025-04-15Remove rpath=$ORIGINBruce Hill
2025-04-15rpath fixBruce Hill
2025-04-15Add configuration script to choose install paths and default C compilerBruce Hill
2025-04-15Remove -lbacktraceBruce Hill
2025-04-15Bring back TCC support!Bruce Hill
2025-04-15Add --no-source-mapping flagBruce Hill
2025-04-14Remap source information in debugging infoBruce Hill
2025-04-14Add compiler flag for -D_BSD_SOURCEBruce Hill
2025-04-14Ignore `if ((a == b))` warningsBruce Hill
2025-04-14More flexible symbol renaming that doesn't rely on advanced flags fromBruce Hill
2025-04-14Print full library pathBruce Hill
2025-04-14Slightly more robust filtering of stack trace from main() onwardsBruce Hill
2025-04-14Reworking of stack traces (back to using addr2line) for compatibilityBruce Hill
2025-04-14Further fixes for printing quoted strings/charsBruce Hill
2025-04-14Fixes for printingBruce Hill
2025-04-12Replace addr2line with libbacktrace to get improved stack tracesBruce Hill
2025-04-10Remove strlcpy()Bruce Hill
2025-04-07Fix lvalue issueBruce Hill
2025-04-07Add table.get_or_set()Bruce Hill
2025-04-07Remove table.bump()Bruce Hill
2025-04-07Fix for (&table).keys being seen as mutableBruce Hill
2025-04-07get_or_setdefault needs to check data_refcountBruce Hill
2025-04-07Move clamped() and is_between() to proper functions (not just macros)Bruce Hill
2025-04-07Bugfix for declaring a variable from a function (not a closure)Bruce Hill
2025-04-07Add `is_between()` for various typesBruce Hill
2025-04-07Add Byte.to() method and improved micro optimization of iterating overBruce 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
2025-04-06Improved inline C code: now uses `C_code` keyword and supportsBruce Hill
2025-04-06Fix for empty numsBruce Hill
2025-04-06Fix for empty fixed-with integersBruce Hill
2025-04-06Add `continue` and `break` as aliases for `skip`/`stop`, also improveBruce Hill
2025-04-06Allow uninitialized variables when there's a sensible empty valueBruce Hill
2025-04-06Remove dead code for handling Declare statments with Use insideBruce Hill
2025-04-06Fix default `pretty` visualization of codegenBruce Hill
2025-04-06Add a parser error for empty enum definitionsBruce Hill
2025-04-06Make it a bit more ergonomic to make function typesBruce 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