projects
/
Faustine.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
New directory tree, with preprocessor/ inside interpretor/.
[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