Module MenhirLib.EngineTypesSource
Sourcetype ('state, 'semantic_value) stack = {state : 'state;semv : 'semantic_value;startp : Stdlib.Lexing.position;endp : Stdlib.Lexing.position;next : ('state, 'semantic_value) stack;
} Sourcetype ('state, 'semantic_value, 'token) env = {error : bool;triple : 'token * Stdlib.Lexing.position * Stdlib.Lexing.position;stack : ('state, 'semantic_value) stack;current : 'state;
}