aiken/crates
KtorZ e9e3f4f50a Implement TraceIfFalse type-checking and AST transformation.
This caused me some trouble. In my first approach, I ended up having
  multiple traces because nested values would be evaluated twice; once
  as condition, and once as part of the continuation.

  To prevent this, we can simply evaluate the condition once, and return
  plain True / False boolean as outcome. So this effectively transforms any
  expression:

  ```
  expr
  ```

  as

  ```
  if expr { True } else { trace("...", False) }
  ```
2023-02-16 20:29:41 -05:00
..
aiken Fix validator lookup by title. 2023-02-16 10:28:27 +01:00
aiken-lang Implement TraceIfFalse type-checking and AST transformation. 2023-02-16 20:29:41 -05:00
aiken-lsp chore: clippy autofix 2023-02-01 18:53:11 -05:00
aiken-project Implement TraceIfFalse type-checking and AST transformation. 2023-02-16 20:29:41 -05:00
flat-rs Release 0.0.27 2022-12-30 00:57:49 -05:00
uplc Fix error display in tx simulate. 2023-02-15 09:42:46 +01:00