Module DefinitionParser

module DefinitionParser: sig .. end

type token = 
| EQUAL
| DOLLAR
| OPENING_PARENT
| CLOSING_PARENT
| WHITESPACE
| EOF
| IDENT of string
| CHARACTER of char
| STRING of string
val definition : (Lexing.lexbuf -> token) ->
Lexing.lexbuf -> (string * string) option