Fabian Pottbäcker
Fabian Pottbäcker
Closes: #659 Added optional condtions to match cases in RCST, AST, and HIR, which are resolved to if/else in MIR. ### Checklist - [ ] Tests for the changes have...
Currently, functions like equals call their parameters `a` and `b`, which is applied to the whole codebase for consistency. We could use more descriptive names, such as `lhs` and `rhs`...
Given the following function ```candy foo value1 value2 = needs (int.is value1) needs (text.is value2) [...] ``` we can assume that it will always panic with us at fault for...
Consider this function: ```candy foo value = ifElse (value | equals 5) { Ok value } { Error "NOPE" } ``` Currently, the fuzzer is going in blind without using...
### Issue Kind Brand new capability ### Description Some plugins rely on settings which should not necessarily be part of the pyproject.toml, e.g. [pypi-mirror](https://github.com/arcesium/poetry-plugin-pypi-mirror/blob/master/src/poetry_plugin_pypi_mirror/plugins.py#L30) (ref. #5958). Currently settings cannot be...