Type Alias arithmetic_parser::SpannedExpr

source ·
pub type SpannedExpr<'a, T> = Spanned<'a, Expr<'a, T>>;
Expand description

Expr with the associated type and code span.

Aliased Type§

struct SpannedExpr<'a, T> {
    pub extra: Expr<'a, T>,
    /* private fields */
}

Fields§

§extra: Expr<'a, T>

Extra information that can be embedded by the user.