//! Haskell-style surface syntax parser for panproto expressions.
//!
//! Parses a human-readable functional language into panproto's native
//! representation types: `Expr`, `InstanceQuery`, `FieldTransform`,
//! `DirectedEquation`, and `WInstance` of `ThExpr`.
//!
//! The surface syntax supports list comprehensions, do-notation, let/where
//! bindings, case/of with guards, lambda expressions, curried application,
//! function composition, operator sections, record syntax with punning,
//! pattern matching, and `->` for graph edge traversal.
/// Token types for the surface syntax.
/// Lexer with layout insertion pass.
/// Chumsky parser producing `Expr` from the token stream.
/// Pretty printer converting `Expr` back to surface syntax.
// Re-exports for convenience.
pub use ;
pub use parse;
pub use pretty_print;
pub use ;