projects
/
Faustine.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
bd21f46488fd1a2fbea1123da802790ebe64f772
[Faustine.git]
/
interpretor
/
parser.mli
1
type token =
2
| CONST of (string)
3
| IDENT of (Types.symbol)
4
| LPAR
5
| RPAR
6
| SEQ
7
| SPLIT
8
| MERGE
9
| PAR
10
| REC
11
| EOF
12
| POINT
13
14
val main :
15
(Lexing.lexbuf -> token) -> Lexing.lexbuf -> Types.faust_exp