Is there a way to export more things when I generate a parser with menhir?
问题 I'm using menhir to generate a parser and right now, the parser.mli file that it generated from my parser.mly file looks like this: (* The type of tokens. *) type token = (* ... huge ADT definition goes here ... *) (* This exception is raised by the monolithic API functions. *) exception Error (* The monolithic API. *) val start: (Lexing.lexbuf -> token) -> Lexing.lexbuf -> Types.ast Is there a way to include more stuff in my parser's interface? In particular, I would like to be able to also