summaryrefslogtreecommitdiff
path: root/src/lexer.mll
diff options
context:
space:
mode:
authorThomas Bauereiss2017-09-29 16:33:55 +0100
committerThomas Bauereiss2017-09-29 16:33:55 +0100
commitd24027629670f9ecd67cf107a988df242c42ed19 (patch)
tree367a79b1e6fec48a8e1dfb81770c0c7d3360d0de /src/lexer.mll
parent7e1293604ff02c072568e03830d25adfea063087 (diff)
parent381a3967ebd9269082b452669f507787decf28b0 (diff)
Merge branch 'experiments' of bitbucket.org:Peter_Sewell/sail into experiments
Diffstat (limited to 'src/lexer.mll')
-rw-r--r--src/lexer.mll4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lexer.mll b/src/lexer.mll
index cf3c9baf..fb091f67 100644
--- a/src/lexer.mll
+++ b/src/lexer.mll
@@ -112,6 +112,10 @@ let kw_table =
("union", (fun x -> Union));
("with", (fun x -> With));
("when", (fun x -> When));
+ ("repeat", (fun x -> Repeat));
+ ("until", (fun x -> Until));
+ ("while", (fun x -> While));
+ ("do", (fun x -> Do));
("val", (fun x -> Val));
("div", (fun x -> Div_));