summaryrefslogtreecommitdiff
path: root/tests/typ/compiler
AgeCommit message (Collapse)Author
2023-09-11Type compatibilityLaurenz
For now, types can be used like strings in operations to prevent breakage of many packages. Hopefully, we can get rid of this in the future.
2023-09-11Update tests for type system changesLaurenz
2023-09-04Allow packages to specify their minimum compiler versionLaurenz
2023-08-30Add test for ends-with fixLaurenz
2023-08-30Allow renaming imports with `as` (#1923)Pg Biel
2023-08-30Make zip variadic (#2041)Sébastien d'Herbais de Thun
2023-08-30Duration type, simple date-duration-calculations and comparisons (#1843)Beiri22
2023-08-26Implement `rev()` method on string (#2013)Kevin K
2023-08-22Support selectors with and/or followed by before/after (#1883)damaxwell
Co-authored-by: Laurenz <laurmaedje@gmail.com>
2023-08-21Add hint for missing method error for dictionary where a field with a ↵Simon Rask
function is present (#1922)
2023-08-21Check for control flow event before let binding (#1912)bluebear94
Fixes #1906 (trying to destructure the result of `continue`).
2023-08-21Add intersperse() method for arrays (#1897)Gokul Soumya
2023-08-21Make bytes joinableLaurenz
2023-08-21Wasm plugin system (#1555)astrale-sharp
2023-08-08Fix crashing on empty regexps (#1870)sitandr
2023-08-04Bytes typeLaurenz
- Moves `Bytes` from `util` to `eval` module - Accepts bytes in `str` function for bytes -> str conversion - Adds `bytes` function for str | array -> bytes conversion - Adds `array` function for bytes -> array conversion - Adds `len`, `at`, and `slice` methods for bytes - Adds `encoding` parameter to `read` function
2023-07-29Add start parameter to array enumerate (#1818)bluebear94
2023-07-26Update field mutation error message (#1742)Pg Biel
2023-07-18Adding `dedup` to `array` (#1738)Sébastien d'Herbais de Thun
2023-07-11Add fields and methods to several primitives (#790)Pg Biel
2023-07-06Better error messages for `#` expressionsLaurenz
2023-07-06Better error messages for keywords in place of identifiersLaurenz
Fixes #1123
2023-07-05Parser hints infrastructure (#1570)Mathias Fischler
2023-06-30Minor improvementsLaurenz
2023-06-28Reintroduce `--root`Laurenz
2023-06-27Basic package managementLaurenz
2023-06-24Add infrastructure to enrich errors with hints (#1486)Mathias Fischler
2023-06-12Resolve #1141: Add hint for missing numbering, improve hint format ↵Mathias Fischler
consistency (#1456)
2023-06-09Undo regex type renameLaurenz
Unnecessary breaking change for now
2023-05-30Fix doc linksLaurenz
2023-05-30Add `fields` method to content (#1340)MALO
2023-05-29Fix `.at(default: ...)` for strings and content (#1339)Pg Biel
2023-05-24Rework delimiter errorsLaurenz
Fixes #572
2023-05-22Fix field access on styled elementLaurenz
Fixes #1197
2023-05-22Fix removal order for dictionaryLaurenz
Switches to `shift_remove` for now. In the future, we should look into a more efficient implementation. Fixes #1258.
2023-05-22Clearer error messages for failed comparisonsLaurenz
Fixes #1231
2023-05-19Update string doc: index can be negative (#1198)Leedehai
2023-05-17Show default values in documentationLaurenz
Fixes #169 Fixes #1102
2023-05-12Show rules for symbols (fixes #1130) (#1175)sitandr
2023-05-03Function scopes (#1032)Pg Biel
2023-05-03Implement default values for at() (#995)Michael Lohr
2023-05-03[Feature] Allow function as argument for string.replace (#944)dvdvgt
2023-04-28check index on placeholder (#1005)Marmare314
2023-04-26Touch up docsLaurenz
2023-04-26Pattern as parameter (#854)Marmare314
2023-04-26Fix overflows with operators (#904)HarmoGlace
2023-04-25Support indices preceding the base symbol, revamping #699 (#825)Leedehai
Breaking change: abbreviate attach() attachment params, top -> t, bottom -> b
2023-04-25Add a zip method to arrays (#947)Laurenz Stampfl
2023-04-25Destructuring assign (#703)Marmare314
2023-04-25Add sum and product to arrays (#966)SekoiaTree