aboutsummaryrefslogtreecommitdiff
path: root/compile.c
AgeCommit message (Expand)Author
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
2024-08-10Add Array:unique() to get a set of unique itemsBruce Hill
2024-08-10For tables, deprecate support for square bracket indexing and .defaultBruce Hill
2024-08-10Make Num32/Num64 literals explicitly typed to aid in macros usingBruce Hill
2024-08-10Add Sets to the languageBruce Hill
2024-08-08Change table removal function to use values instead of referencesBruce Hill
2024-08-05Add a Range datatype with creation methods like `5:to(10)` andBruce Hill
2024-08-04Switch to TABLE_INCREFBruce Hill
2024-08-04More refcount fixesBruce Hill
2024-08-04Fix up some edge cases with refcountingBruce Hill
2024-08-04Minor fix for array refcountingBruce Hill
2024-08-04Tweaks to array implementation, including changing how the bits areBruce Hill
2024-08-04Switch around some of the logic for array:random() and array:shuffle()Bruce Hill