Library
Module
Module type
Parameter
Class
Class type
type token = Position.range * Token.t
Type of the tokens.
type item = token
In order to conform to the interface Fmlib_std.Interfaces.SINK
.
val needs_more : t -> bool
needs_more p
Does the parser p
need more tokens?
put tok p
Push token tok
into the parser p
.
Even if the parser has ended, more tokens can be pushed into the parser. The parser stores the token as lookahead token.
If the parser has already received the end of the token stream via put_end
, then all subsequent tokens are ignored.
type final = Final.t
Type of the final result.
val has_succeeded : t -> bool
has_succeeded p
Has the parser p
succeeded?
final p
The final object constructed by the parser p
in case of success.
Precondition: has_succeeded p
type expect = string * Indent.expectation option
Type of expectations.
val has_failed_syntax : t -> bool
has_failed_syntax p
Has the parser p
failed with a syntax error?
failed_expectations p
The failed expectations due to a syntax error.
Precondition: has_failed_syntax p
type semantic = Semantic.t
Type of semantic errors.
val has_failed_semantic : t -> bool
Has the parser failed because of a semantic error?
The semantic error encountered.
Precondition: A semantic error has occurred.
type state = State.t
Type of the state of the parser (in many cases unit
)
The first lookahead token (or None
in case there is none).
val has_received_end : t -> bool
has_received_end p
Has the parser p
already received the end of token stream via put_end
?
val has_consumed_end : t -> bool
has_consumed_end p
Has the parser p
already received the end of token stream via put_end
and consumed it?