jxxcarlson / elm-l0-parser / Parser.Expr

The syntax tree for the parser is of type Expr.


type Expr
    = Expr String (List Expr) Parser.Token.Meta
    | Text String Parser.Token.Meta
    | Verbatim String String Parser.Token.Meta
    | Error String