Engine.Make
Sourcemodule T : EngineTypes.TABLE
include EngineTypes.MONOLITHIC_ENGINE
with type state = T.state
with type token = T.token
with type semantic_value = T.semantic_value
type state = T.state
type token = T.token
type semantic_value = T.semantic_value
val entry :
[ `Legacy | `Simplified ] ->
state ->
(Lexing.lexbuf -> token) ->
Lexing.lexbuf ->
semantic_value
include IncrementalEngine.INCREMENTAL_ENGINE
with type token := token
and type 'a lr1state = state
with type production = T.production
with type 'a env = (T.state, T.semantic_value, T.token) EngineTypes.env
type production = T.production
val offer :
'a checkpoint ->
(token * IncrementalEngine.position * IncrementalEngine.position) ->
'a checkpoint
val loop_handle :
('a -> 'answer) ->
('a checkpoint -> 'answer) ->
supplier ->
'a checkpoint ->
'answer
val loop_handle_undo :
('a -> 'answer) ->
('a checkpoint -> 'a checkpoint -> 'answer) ->
supplier ->
'a checkpoint ->
'answer
val number : _ lr1state -> int
val production_index : production -> int
val find_production : int -> production
type element =
| Element : 'a lr1state
* 'a
* IncrementalEngine.position
* IncrementalEngine.position -> element
include EngineTypes.INCREMENTAL_ENGINE_START
with type state := state
and type semantic_value := semantic_value
and type 'a checkpoint := 'a checkpoint