Up

module Parser_with_layout

: sig
#
type token =
# | STRING of (string * (Lexing.position * string) option)
# | COMMENT of (string * Lexing.position option)
# | LPAREN
# | RPAREN
# | EOF
# | HASH_SEMI
#
val sexp_opt : (Lexing.lexbuf -> token) -> Lexing.lexbuf -> Type_with_layout.t_or_comment option
#
val rev_sexps : (Lexing.lexbuf -> token) -> Lexing.lexbuf -> Type_with_layout.t_or_comment list
end