diff options
| author | Alasdair Armstrong | 2017-10-04 18:08:16 +0100 |
|---|---|---|
| committer | Alasdair Armstrong | 2017-10-04 18:08:16 +0100 |
| commit | 69dcc28b25d0ad6b3f62a692684581b4f266aa03 (patch) | |
| tree | ee10d66d34b1d12815eccd03232f6a4252c8a166 /src/lexer2.mll | |
| parent | 4feedbf27c5a204806bb5f1297bd9cd2505e3c26 (diff) | |
Fixed a bug in vector concatenation l-expressions
The code for these is now rather ugly though... it needs to be cleaned up at some point
Also various improvements to new menhir parser
Diffstat (limited to 'src/lexer2.mll')
| -rw-r--r-- | src/lexer2.mll | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/lexer2.mll b/src/lexer2.mll index a1717d62..1ab5b98b 100644 --- a/src/lexer2.mll +++ b/src/lexer2.mll @@ -100,7 +100,6 @@ let kw_table = ("by", (fun _ -> By)); ("match", (fun _ -> Match)); ("clause", (fun _ -> Clause)); - ("const", (fun _ -> Const)); ("dec", (fun _ -> Dec)); ("def", (fun _ -> Def)); ("op", (fun _ -> Op)); @@ -145,13 +144,6 @@ let kw_table = ("with", (fun x -> With)); ("val", (fun x -> Val)); - ("div", (fun x -> Div_)); - ("mod", (fun x -> Mod)); - ("mod_s", (fun x -> ModUnderS)); - ("quot", (fun x -> Quot)); - ("quot_s", (fun x -> QuotUnderS)); - ("rem", (fun x -> Rem)); - ("barr", (fun x -> Barr)); ("depend", (fun x -> Depend)); ("rreg", (fun x -> Rreg)); |
