Module Meta_file.Lexer

type token =
| STRING of string
| IDENT of string
| LPAREN
| RPAREN
| PLUSEQUAL
| EQUAL
| MINUS
| EOF
exception Error
val token : Stdlib.Lexing.lexbuf -> token