You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
304 B
19 lines
304 B
module type S = sig
|
|
type ast
|
|
|
|
module Parser : sig
|
|
type token
|
|
|
|
exception Error
|
|
|
|
val file : (Lexing.lexbuf -> token) -> Lexing.lexbuf -> ast
|
|
end
|
|
|
|
module Lexer : sig
|
|
val token : Lexing.lexbuf -> Parser.token
|
|
|
|
module Helper : Lexer.S
|
|
end
|
|
|
|
val expected_ext : string option
|
|
end
|
|
|