ligo/parser/pascaligo/LexerLog.mli

18 lines
404 B
OCaml
Raw Normal View History

2019-05-13 00:56:22 +04:00
module type S =
sig
module Lexer : Lexer.S
val output_token :
?offsets:bool -> [`Byte | `Point] ->
EvalOpt.command -> out_channel ->
Markup.t list -> Lexer.token -> unit
type file_path = string
val trace :
?offsets:bool -> [`Byte | `Point] ->
file_path option -> EvalOpt.command -> unit
end
module Make (Lexer: Lexer.S) : S with module Lexer = Lexer