Module type EngineTypes.ENGINE
include MONOLITHIC_ENGINE
val entry : state -> (Stdlib.Lexing.lexbuf -> token) -> Stdlib.Lexing.lexbuf -> semantic_value
include IncrementalEngine.INCREMENTAL_ENGINE with type token := token and type 'a lr1state = state
type tokentype productiontype 'a envtype 'a checkpoint= private|InputNeeded of 'a env|Shifting of 'a env * 'a env * bool|AboutToReduce of 'a env * production|HandlingError of 'a env|Accepted of 'a|Rejected
val offer : 'a checkpoint -> (token * IncrementalEngine.position * IncrementalEngine.position) -> 'a checkpointval resume : 'a checkpoint -> 'a checkpoint
type supplier= unit -> token * IncrementalEngine.position * IncrementalEngine.position
val lexer_lexbuf_to_supplier : (Stdlib.Lexing.lexbuf -> token) -> Stdlib.Lexing.lexbuf -> supplierval loop : supplier -> 'a checkpoint -> 'aval loop_handle : ('a -> 'answer) -> ('a checkpoint -> 'answer) -> supplier -> 'a checkpoint -> 'answerval loop_handle_undo : ('a -> 'answer) -> ('a checkpoint -> 'a checkpoint -> 'answer) -> supplier -> 'a checkpoint -> 'answerval shifts : 'a checkpoint -> 'a env optionval acceptable : 'a checkpoint -> token -> IncrementalEngine.position -> bool
type 'a lr1state= state
val number : _ lr1state -> intval production_index : production -> intval find_production : int -> production
type element=|Element : 'a lr1state * 'a * IncrementalEngine.position * IncrementalEngine.position -> elementtype stack= element General.stream
val stack : 'a env -> stackval top : 'a env -> element optionval pop_many : int -> 'a env -> 'a env optionval get : int -> 'a env -> element optionval current_state_number : 'a env -> intval equal : 'a env -> 'a env -> boolval positions : 'a env -> IncrementalEngine.position * IncrementalEngine.positionval env_has_default_reduction : 'a env -> boolval state_has_default_reduction : _ lr1state -> boolval pop : 'a env -> 'a env optionval force_reduction : production -> 'a env -> 'a envval input_needed : 'a env -> 'a checkpoint
include INCREMENTAL_ENGINE_START with type state := state and type semantic_value := semantic_value and type 'a checkpoint := 'a checkpoint
val start : state -> Stdlib.Lexing.position -> semantic_value checkpoint