aboutsummaryrefslogtreecommitdiff
path: root/compile.c
AgeCommit message (Expand)Author
2024-08-19Support demoting int literalsBruce Hill
2024-08-19Fix some numeric precision issues with how nums are printedBruce Hill
2024-08-19Fix precision of compiled numbersBruce Hill
2024-08-19Make sure imported/used modules are initialized properlyBruce Hill
2024-08-18Update channel API to take a Where parameterBruce Hill
2024-08-18Add Channel:peek()Bruce Hill
2024-08-18Rename push/pop to give/get, since it's not stack-orderedBruce Hill
2024-08-18Add array:first(predicate:func(x:&T)->Bool)->@%T?Bruce Hill
2024-08-18Add `enum.tag` as a way to do a boolean test for whether a value has aBruce Hill
2024-08-18Deprecate `#` operator in favor of .length and fix up some issuesBruce Hill
2024-08-18Added a .length field to arrays/sets/tables, added a .max_size field toBruce Hill
2024-08-18Fix array indexingBruce Hill
2024-08-18Add primality testing and next_prime()/prev_prime()Bruce Hill
2024-08-18Fix up some bigint logic issuesBruce Hill
2024-08-18Split BigIntType out of IntType and switch to using enums for the sizeBruce Hill
2024-08-18Fix array ++= itemBruce Hill
2024-08-17Handle demotion of integers when we know what the expected type ought toBruce Hill
2024-08-17Disallow accessing type members that start with underscores unlessBruce Hill
2024-08-17Make small integer constants actually constantBruce Hill
2024-08-17Correct the logic to prevent promoting nums to ints automaticallyBruce Hill
2024-08-17Add table:get_or_null(key) for tables with non-null pointer values,Bruce Hill
2024-08-17Allow for top-level or namespace-level variables that are initializedBruce Hill
2024-08-16For cached functions with no arguments, use a static var instead of aBruce Hill
2024-08-15Bugfix for closuresBruce Hill
2024-08-15Add array:find()Bruce Hill
2024-08-15Add method for array:remove_item(item) and renameBruce Hill
2024-08-15Add array:shuffled() and checks for array insertionBruce Hill
2024-08-15Add binary search method to arraysBruce Hill
2024-08-14Fix up type conversions with ints and numsBruce Hill
2024-08-13Support ^ exponentiation for integersBruce Hill
2024-08-13Fix some edge casesBruce Hill
2024-08-13Tweak to codegen for range iterationBruce Hill
2024-08-13Cleanup code gen for Num coercionsBruce Hill
2024-08-13Fix channelsBruce Hill
2024-08-13Fix rangesBruce Hill
2024-08-13Fixing up more stuffBruce Hill
2024-08-13Fix min/maxBruce Hill
2024-08-13Fix Int->Num promotionsBruce Hill
2024-08-13Proper promotion of intsBruce Hill
2024-08-13Fixing up integersBruce Hill
2024-08-13More fixesBruce Hill
2024-08-13Partially working first draft of bigintsBruce Hill
2024-08-12Fix for set.itemsBruce Hill
2024-08-12Bugfix some issues with table keys/valuesBruce Hill
2024-08-12Fix some COW bugs for arrays/tables/setsBruce Hill
2024-08-11Support channels with maximum sizeBruce Hill
2024-08-11Add channels and threadsBruce Hill
2024-08-10Overhaul of operator metamethodsBruce Hill
2024-08-10Bugfix some issues with mod1Bruce Hill
2024-08-10Add array:counts()Bruce Hill