summaryrefslogtreecommitdiff
path: root/tests/typ/compiler/array.typ
AgeCommit message (Collapse)Author
2023-10-27Fix error priority for function argumentsLaurenz
Errors about superfluous arguments are now thrown before errors of the function execution itself. Fixes #1367
2023-10-27Fix argument parsing bugLaurenz
Things like `luma(1, key: "val")` didn't produce an error before because `args.finish()?` wasn't called. This changes `args: Args` to `args: &mut Args` to make it impossible for that to happen.
2023-10-27Implement unary `array.zip`, closing #2478 (#2491)Joseph Wilson
2023-10-10Adds a default value to `.remove()` on `dict` and `array` (#2346)Sébastien d'Herbais de Thun
2023-09-11Update tests for type system changesLaurenz
2023-08-30Make zip variadic (#2041)Sébastien d'Herbais de Thun
2023-08-21Add intersperse() method for arrays (#1897)Gokul Soumya
2023-07-29Add start parameter to array enumerate (#1818)bluebear94
2023-07-18Adding `dedup` to `array` (#1738)Sébastien d'Herbais de Thun
2023-05-24Rework delimiter errorsLaurenz
Fixes #572
2023-05-22Clearer error messages for failed comparisonsLaurenz
Fixes #1231
2023-05-03Implement default values for at() (#995)Michael Lohr
2023-04-25Add a zip method to arrays (#947)Laurenz Stampfl
2023-04-25Add sum and product to arrays (#966)SekoiaTree
2023-04-19Give more specific error messages (#881)Leedehai
2023-04-11Array sorting by key (#584)Daniel Csillag
2023-03-18Architecture descriptionLaurenz
2023-02-17Fix error handling after hashtagLaurenz
2023-02-05Fix `array.pop()`Laurenz
2023-01-30Add calc moduleMartin Haug
2023-01-27Hashtags everywhere!Laurenz
2023-01-20Rewrite parserLaurenz
2022-12-30Remove index syntax in favor of accessor methodsLaurenz
2022-11-29Reorganize library and testsLaurenz