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

27 lines
525 B
Plaintext

Parser.variant
: ∀(A: *) ∀(variants: (List (Parser.Guard A)))
(Parser A)
= λA λvariants
use P = λx (Parser A)
use cons = λvariant λothers
(Pair.get
(Parser Bool)
(Parser A)
variant
(Parser A)
λguard λparser
(Parser.bind
Bool
A
guard
λsuccess
(Bool.if
success
(Parser A)
parser
(Parser.variant A others)
)
)
)
use nil = (Parser.fail A "error")
(~variants P cons nil)