Kind/book/Parser.bind.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

11 lines
327 B
Plaintext

Parser.bind
: ∀(A: *)
∀(B: *)
∀(a: (Parser A))
∀(b: ∀(x: A) (Parser B))
(Parser B)
= λA λB λa λb λcode
use P = λx ∀(b: ∀(x: A) (Parser B)) (Parser.Result B)
use done = λa.code λa.value λb (b a.value a.code)
use fail = λa.error λb (Parser.Result.fail B a.error)
(~(a code) P done fail b)