aiken/crates
KtorZ 3c7663cd3c
Basic exhaustivness check on list patterns
Before that commit, the type-checker would allow unsafe list patterns
  such as:

  ```
  let [x] = xs

  when xs is {
    [x] -> ...
    [x, ..] ->  ...
  }
  ```

  This is quite unsafe and can lead to confusing situations. Now at
  least the compiler warns about this. It isn't perfect though,
  especially in the presence of clause guards. But that's a start.
2023-02-11 16:20:28 +01:00
..
aiken Use positional argument for blueprint 'apply' command 2023-02-07 11:42:42 +01:00
aiken-lang Basic exhaustivness check on list patterns 2023-02-11 16:20:28 +01:00
aiken-lsp chore: clippy autofix 2023-02-01 18:53:11 -05:00
aiken-project Add 'Ordering' data-type to the Prelude. 2023-02-09 11:07:30 +01:00
flat-rs Release 0.0.27 2022-12-30 00:57:49 -05:00
uplc feat: fix errors and add tests for BigInt changes 2023-02-09 15:01:30 -05:00