Source file keyword.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
let is_keyword = function
  | "and" -> true
  | "as" -> true
  | "assert" -> true
  | "begin" -> true
  | "class" -> true
  | "constraint" -> true
  | "do" -> true
  | "done" -> true
  | "downto" -> true
  | "else" -> true
  | "end" -> true
  | "exception" -> true
  | "external" -> true
  | "false" -> true
  | "for" -> true
  | "fun" -> true
  | "function" -> true
  | "functor" -> true
  | "if" -> true
  | "in" -> true
  | "include" -> true
  | "inherit" -> true
  | "initializer" -> true
  | "lazy" -> true
  | "let" -> true
  | "match" -> true
  | "method" -> true
  | "module" -> true
  | "mutable" -> true
  | "new" -> true
  | "nonrec" -> true
  | "object" -> true
  | "of" -> true
  | "open" -> true
  | "or" -> true
  (* | "parser" -> true *)
  | "private" -> true
  | "rec" -> true
  | "sig" -> true
  | "struct" -> true
  | "then" -> true
  | "to" -> true
  | "true" -> true
  | "try" -> true
  | "type" -> true
  | "val" -> true
  | "virtual" -> true
  | "when" -> true
  | "while" -> true
  | "with" -> true
  | "lor" -> true
  | "lxor" -> true
  | "mod" -> true
  | "land" -> true
  | "lsl" -> true
  | "lsr" -> true
  | "asr" -> true
  | _ -> false