aiken/crates
KtorZ b36250d183
Provide better errors on unknown type in cyclic definitions.
Let's consider the following case:

  ```
  type Var =
    Integer

  type Vars =
    List<Var>
  ```

  This incorrectly reports an infinite cycle; due to the inability to
  properly type-check `Var` which is also a dependent var of `Vars`. Yet
  the real issue here being that `Integer` is an unknown type.

  This commit also upgrades miette to 7.2.0, so that we can also display
  a better error output when the problem is actually a cycle.
2024-08-08 14:52:14 -04:00
..
aiken Provide better errors on unknown type in cyclic definitions. 2024-08-06 19:24:48 +02:00
aiken-lang Fix clippy 2024-08-08 00:39:44 -04:00
aiken-lsp Provide better errors on unknown type in cyclic definitions. 2024-08-06 19:24:48 +02:00
aiken-project Provide better errors on unknown type in cyclic definitions. 2024-08-08 14:52:14 -04:00
uplc Running examples as doc tests is not gonna work 2024-08-08 00:39:44 -04:00