Kind/book/Kind.report.kind2
Victor Taelin 85ad65b026 use-notation
Now, there are two local binders:

let x = ...
use x = ...

The 'let' binder will create a local definition, type-check it, and
assign a name to it. When compiled, it will create 'dup' nodes.

The 'use' binder is just an alias. It will not bind a new variable, and,
when compiled, will create inline copies. Also, for type-checking, it
allows creating aliases that are definitionaly equal for the checker.
2024-03-08 17:39:37 -03:00

19 lines
560 B
Plaintext

Kind.report
: ∀(e: Bool)
∀(inferred: Kind.Term)
∀(expected: Kind.Term)
∀(value: Kind.Term)
∀(dep: Nat)
(Maybe Kind.Term)
= λe λinferred λexpected λvalue λdep
use pure = (Maybe.some Kind.Term)
use none = (Maybe.none Kind.Term)
use P = λx
∀(inferred: Kind.Term)
∀(expected: Kind.Term)
∀(value: Kind.Term)
∀(dep: Nat)
(Maybe Kind.Term)
use true = λinferred λexpected λvalue λdep (pure Kind.set)
use false = λinferred λexpected λvalue λdep none
(~e P true false inferred expected value dep)