Up

module SentenceParser

: sig
#
type token =
# | COLON
# | EOF
# | EOL
# | TERMINAL of Grammar.Terminal.t
# | NONTERMINAL of Grammar.Nonterminal.t
#
val sentence : (Lexing.lexbuf -> token) -> Lexing.lexbuf -> (Grammar.Nonterminal.t option * Grammar.Terminal.t list) option
end