aboutsummaryrefslogtreecommitdiff
path: root/src/types.c
AgeCommit message (Expand)Author
2025-12-28Change autoformatter to no longer allow single-line functionsBruce Hill
2025-12-22Bugfix for `Success || Void` typecheckingBruce Hill
2025-12-07Change Paths to be an enum of their different types.Bruce Hill
2025-12-07Rename `Empty()` -> `Present()` for set-like tablesBruce Hill
2025-12-07Consolidate logic for enums with and without tags with fields.Bruce Hill
2025-12-06Use `foo!` as sugar for `foo.FirstTag!` for enum values. Also, giveBruce Hill
2025-11-29Fix for undefined behavior on structs/enums with paddingv2025-11-29.2Bruce Hill
2025-11-27Bugfix for infinite recursion in some type methodsBruce Hill
2025-11-26Bugfix for accidental violation of immutable value guarantees due toBruce Hill
2025-11-23Better error messages and bugfix for compile_to_type logicBruce Hill
2025-11-23Accessing enum fields now gives an optional value instead of a booleanBruce Hill
2025-11-23Bugfix for stack memory not getting properly detected in placesBruce Hill
2025-10-12Code cleanup and fixing minor issuesBruce Hill
2025-10-11Make `{a,b,c}` shorthand for `{a:Empty(), b:Empty(), c:Empty()}` andBruce Hill
2025-10-05Fix a bunch of issues with optional typesBruce Hill
2025-10-05Add serialization and deserialization by coercion to/from [Byte]Bruce Hill
2025-10-05Fix: don't allow a `lang` to be used as Text without explicitlyBruce Hill
2025-09-21Use colons instead of '=' for tables (e.g. {1: 2})Bruce Hill
2025-09-21Deprecate setsBruce Hill
2025-09-21Bugfixes for anonymous enums, code cleanup to remove type_to_string(),Bruce Hill
2025-09-20WIP on inline enumsBruce Hill
2025-09-01Switch to using Texts(x) instead of Texts(String(x)) when possibleBruce Hill
2025-08-25Update file header commentsBruce Hill
2025-08-24Remove vim modelinesBruce Hill
2025-08-23Don't align trailing commentsBruce 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
2025-05-25Optimize codegen for enums: no longer bother with a struct wrapper, butBruce Hill
2025-05-03Bugfix for promotions in comparisonsBruce Hill
2025-04-28Remove remaining printf referencesBruce Hill
2025-04-15Make some compatibility fixes to make sure the compiler can fully buildBruce Hill
2025-04-15Deprecate `auto`Bruce Hill
2025-04-07Add Byte.to() method and improved micro optimization of iterating overBruce Hill
2025-04-06Rename Array -> List in all code and docsBruce Hill
2025-04-06Make it a bit more ergonomic to make function typesBruce Hill
2025-04-06Change Set syntax from {x} to |x|Bruce Hill
2025-04-06Bugfix for default values for tablesBruce Hill
2025-04-05Fix up some tests and type_or_typeBruce Hill
2025-04-04Misc fixesBruce Hill
2025-04-04First working compile of refactor to add explicit typing to declarationsBruce Hill
2025-04-03Fix textual representation of table typesBruce Hill
2025-03-31Remove threads and mutexed data from the language in favor of aBruce Hill
2025-03-30Deprecate built-in Moment datatype in favor of a `time` moduleBruce Hill
2025-03-28Add compiler guards for GCC directivesBruce Hill
2025-03-28Explicit nan typeBruce Hill
2025-03-27Deprecate custom printf specifiers in favor of print() function thatBruce Hill
2025-03-25Make docstring tests use an actual expression AST instead of textBruce Hill
2025-03-21Move files into src/ and build into build/Bruce Hill