type token
=
| VBAR |
| SYMBOL of string |
| RPAREN |
| RBRACKET |
| OP9 of string |
| OP8 of string |
| OP7 of string |
| OP6 of string |
| OP5 of string |
| OP4 of string |
| OP3 of string |
| OP2 of string |
| OP12 of string |
| OP11 of string |
| OP10 of string |
| OP1 of string |
| MINUS |
| LPAREN |
| LINKNAME of string |
| LBRACKET |
| INT of int |
| EOF |
| DOT |
| DOLLAR |
| COMMA |
| COLMIN |
| ATAT |
exception
Error
val main : (Stdlib.Lexing.lexbuf -> token) -> Stdlib.Lexing.lexbuf -> Parse__.Syntax.proc
val atom_name_type : (Stdlib.Lexing.lexbuf -> token) -> Stdlib.Lexing.lexbuf -> Parse__.Syntax.atom_name_type