Character_parser.AdvancedAdvanced Parser.
module State : Module_types.ANYmodule Final : Module_types.ANYmodule Expect : Module_types.ANYmodule Semantic : Module_types.ANYmodule Context_msg : Module_types.ANYmodule Context : CONTEXT with type msg = Context_msg.tmodule Error :
Generic_parser.ERROR
with type expect = Expect.t
and type semantic = Semantic.ttype final = Final.tinclude COMBINATORS
with type expect = Expect.t
and type semantic = Semantic.t
and type state = State.t
and type context = Context_msg.tinclude Generic_parser.COMBINATORS
with type expect = Expect.t
with type semantic = Semantic.ttype expect = Expect.ttype semantic = Semantic.tval return : 'a -> 'a tval succeed : 'a -> 'a tval get_position : Position.t ttype state = State.tval get_bounds : (int * int option) ttype context = Context_msg.tinclude PARSERval needs_more : parser -> boolDoes the parser need more tokens (i.e. either put_char or put_end)?
val has_ended : parser -> boolHas the parser terminated (opposite of needs_more p)?
val has_succeeded : parser -> boolHas the parser succeeded
val position : parser -> Position.tThe current position.
val line : parser -> intThe current line.
val column : parser -> intThe current column.
put_char p c feeds the parser p with the character token c. Only possible if needs_more p is valid.
The result the parser has produced which is either a final value or a list of dead ends. Only valid if the parser has terminated.
The list of tokens (i.e. optional characters) which the parser has not processed at the point of termination.
make pc st makes a parser from a parser combinator pc and the initial state st.