espy-ears 0.1.0

espy's parser implementation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
## espy-ears (parser)

the parser consists of two major contexts: the expression and the block.
expressions define a sequence of operations that produce a value, while blocks
are capable of binding expressions to identifiers and disrupting control flow.
an espy program should be interpreted as a "block" at its top level.

block parsing is "infallible"; instead of returning `Result` types, most ast
nodes contain "diagnostics" fields to collect errors without giving up on
parsing.