Kind/book/Kind.Scope.find.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

9 lines
331 B
Plaintext

Kind.Scope.find
: ∀(nam: String) ∀(scp: Kind.Scope) Kind.Term
= λname λscope
use cond = λbnd (~bnd λx Bool λn λt (String.equal name n))
use found = (List.find Kind.Binder cond scope)
use P = λx Kind.Term
use some = λbnd (~bnd λx Kind.Term λn λt t)
use none = (Kind.ref name Kind.set)
(~found P some none)