View Source LixParser.Parser (LixParser v0.1.0)
Implementation of parse
Summary
Types
@type ast_leaf_t() :: {:id, position_t(), binaries()} | {:literal, scalar_t()}
@type ast_t() :: ast_leaf_t() | {:list | :map | :quoted, position_t(), [ast_t()]}
@type binaries() :: [binary()]
@type position_t() :: {pos_integer(), pos_integer()}