From 701dc125e17bde578e7ea6cf8594cf6ce7e0bde2 Mon Sep 17 00:00:00 2001 From: Zackery Spytz Date: Sun, 30 Dec 2018 02:50:46 -0700 Subject: [PATCH] [OCaml] Add missing keywords to ocamlkw.swg The asr, land, lor, lsl, lsr, lxor, mod, and nonrec keywords were missing from ocamlkw.swg. --- Lib/ocaml/ocamlkw.swg | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Lib/ocaml/ocamlkw.swg b/Lib/ocaml/ocamlkw.swg index 92d822219..950bee682 100644 --- a/Lib/ocaml/ocamlkw.swg +++ b/Lib/ocaml/ocamlkw.swg @@ -12,6 +12,7 @@ OCAMLKW(and); OCAMLKW(as); +OCAMLKW(asr); OCAMLKW(assert); OCAMLKW(begin); OCAMLKW(class); @@ -33,13 +34,20 @@ OCAMLKW(in); OCAMLKW(include); OCAMLKW(inherit); OCAMLKW(initializer); +OCAMLKW(land); OCAMLKW(lazy); OCAMLKW(let); +OCAMLKW(lor); +OCAMLKW(lsl); +OCAMLKW(lsr); +OCAMLKW(lxor); OCAMLKW(match); OCAMLKW(method); +OCAMLKW(mod); OCAMLKW(module); OCAMLKW(mutable); OCAMLKW(new); +OCAMLKW(nonrec); OCAMLKW(object); OCAMLKW(of); OCAMLKW(open);