This repository was archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathres_token.ml
223 lines (215 loc) · 5.09 KB
/
res_token.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
module Comment = Res_comment
module CharacterCodes = Res_character_codes
type t =
| Open
| True | False
| Character of char
| Int of {i: string; suffix: char option}
| Float of {f: string; suffix: char option}
| String of string
| Lident of string
| Uident of string
| As
| Dot | DotDot | DotDotDot
| Bang
| Semicolon
| Let
| And
| Rec
| Underscore
| SingleQuote
| Equal | EqualEqual | EqualEqualEqual
| Bar
| Lparen
| Rparen
| Lbracket
| Rbracket
| Lbrace
| Rbrace
| Colon
| Comma
| Eof
| Exception
| Backslash [@live]
| Forwardslash | ForwardslashDot
| Asterisk | AsteriskDot | Exponentiation
| Minus | MinusDot
| Plus | PlusDot | PlusPlus | PlusEqual
| ColonGreaterThan
| GreaterThan
| LessThan
| LessThanSlash
| Hash | HashEqual
| Assert
| Lazy
| Tilde
| Question
| If | Else | For | In | To | Downto | While | Switch
| When
| EqualGreater | MinusGreater
| External
| Typ
| Private
| Mutable
| Constraint
| Include
| Module
| Of
| With
| Land | Lor
| Band (* Bitwise and: & *)
| BangEqual | BangEqualEqual
| LessEqual | GreaterEqual
| ColonEqual
| At | AtAt
| Percent | PercentPercent
| Comment of Comment.t
| List
| TemplateTail of string
| TemplatePart of string
| Backtick
| BarGreater
| Try
| Import
| Export
let precedence = function
| HashEqual | ColonEqual -> 1
| Lor -> 2
| Land -> 3
| Equal | EqualEqual | EqualEqualEqual | LessThan | GreaterThan
| BangEqual | BangEqualEqual | LessEqual | GreaterEqual | BarGreater -> 4
| Plus | PlusDot | Minus | MinusDot | PlusPlus -> 5
| Asterisk | AsteriskDot | Forwardslash | ForwardslashDot -> 6
| Exponentiation -> 7
| MinusGreater -> 8
| Dot -> 9
| _ -> 0
let toString = function
| Open -> "open"
| True -> "true" | False -> "false"
| Character c -> "character '" ^ (Char.escaped c) ^ "'"
| String s -> "string \"" ^ s ^ "\""
| Lident str -> str
| Uident str -> str
| Dot -> "." | DotDot -> ".." | DotDotDot -> "..."
| Int {i} -> "int " ^ i
| Float {f} -> "Float: " ^ f
| Bang -> "!"
| Semicolon -> ";"
| Let -> "let"
| And -> "and"
| Rec -> "rec"
| Underscore -> "_"
| SingleQuote -> "'"
| Equal -> "=" | EqualEqual -> "==" | EqualEqualEqual -> "==="
| Eof -> "eof"
| Bar -> "|"
| As -> "as"
| Lparen -> "(" | Rparen -> ")"
| Lbracket -> "[" | Rbracket -> "]"
| Lbrace -> "{" | Rbrace -> "}"
| ColonGreaterThan -> ":>"
| Colon -> ":"
| Comma -> ","
| Minus -> "-" | MinusDot -> "-."
| Plus -> "+" | PlusDot -> "+." | PlusPlus -> "++" | PlusEqual -> "+="
| Backslash -> "\\"
| Forwardslash -> "/" | ForwardslashDot -> "/."
| Exception -> "exception"
| Hash -> "#" | HashEqual -> "#="
| GreaterThan -> ">"
| LessThan -> "<"
| LessThanSlash -> "</"
| Asterisk -> "*" | AsteriskDot -> "*." | Exponentiation -> "**"
| Assert -> "assert"
| Lazy -> "lazy"
| Tilde -> "tilde"
| Question -> "?"
| If -> "if"
| Else -> "else"
| For -> "for"
| In -> "in"
| To -> "to"
| Downto -> "downto"
| While -> "while"
| Switch -> "switch"
| When -> "when"
| EqualGreater -> "=>" | MinusGreater -> "->"
| External -> "external"
| Typ -> "type"
| Private -> "private"
| Constraint -> "constraint"
| Mutable -> "mutable"
| Include -> "include"
| Module -> "module"
| Of -> "of"
| With -> "with"
| Lor -> "||"
| Band -> "&" | Land -> "&&"
| BangEqual -> "!=" | BangEqualEqual -> "!=="
| GreaterEqual -> ">=" | LessEqual -> "<="
| ColonEqual -> ":="
| At -> "@" | AtAt -> "@@"
| Percent -> "%" | PercentPercent -> "%%"
| Comment c -> "Comment(" ^ (Comment.toString c) ^ ")"
| List -> "list{"
| TemplatePart text -> text ^ "${"
| TemplateTail text -> "TemplateTail(" ^ text ^ ")"
| Backtick -> "`"
| BarGreater -> "|>"
| Try -> "try"
| Import -> "import"
| Export -> "export"
let keywordTable = function
| "true" -> True
| "false" -> False
| "open" -> Open
| "let" -> Let
| "rec" -> Rec
| "and" -> And
| "as" -> As
| "exception" -> Exception
| "assert" -> Assert
| "lazy" -> Lazy
| "if" -> If
| "else" -> Else
| "for" -> For
| "in" -> In
| "to" -> To
| "downto" -> Downto
| "while" -> While
| "switch" -> Switch
| "when" -> When
| "external" -> External
| "type" -> Typ
| "private" -> Private
| "mutable" -> Mutable
| "constraint" -> Constraint
| "include" -> Include
| "module" -> Module
| "of" -> Of
| "list{" -> List
| "with" -> With
| "try" -> Try
| "import" -> Import
| "export" -> Export
| _ -> raise Not_found
[@@raises Not_found]
let isKeyword = function
| True | False | Open | Let | Rec | And | As
| Exception | Assert | Lazy | If | Else | For | In | To
| Downto | While | Switch | When | External | Typ | Private
| Mutable | Constraint | Include | Module | Of
| Land | Lor | List | With
| Try | Import | Export -> true
| _ -> false
let lookupKeyword str =
try keywordTable str with
| Not_found ->
if CharacterCodes.isUpperCase (int_of_char (str.[0] [@doesNotRaise])) then
Uident str
else Lident str
let isKeywordTxt str =
try let _ = keywordTable str in true with
| Not_found -> false
let catch = Lident "catch"