projects
/
Faustine.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Bugfix in Makefile.
[Faustine.git]
/
interpretor
/
lexer.mll
1
{open Parser}
2
3
rule token = parse
4
[' ' '\t' '\n' ] { token lexbuf }
5
| ['a'-'z' 'A'-'Z']+ as x { IDENT x }
6
| ['+' '*' '-' '/' '!' '_' '#'
7
'@' '<' '>' '%'] as x { IDENT (String.make 1 x) }
8
| "[]" { IDENT "[]" }
9
| ['0'-'9']+ as a { CONST a }
10
| '.' { POINT }
11
| '(' { LPAR }
12
| ')' { RPAR }
13
| ',' { PAR }
14
| ':' { SEQ }
15
| "<:" { SPLIT }
16
| ":>" { MERGE }
17
| "~" { REC }
18
| eof { EOF }