aboutsummaryrefslogtreecommitdiff
path: root/src/boot/fe/token.ml
diff options
context:
space:
mode:
Diffstat (limited to 'src/boot/fe/token.ml')
-rw-r--r--src/boot/fe/token.ml4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/boot/fe/token.ml b/src/boot/fe/token.ml
index 85dd2a13..cd41ec2f 100644
--- a/src/boot/fe/token.ml
+++ b/src/boot/fe/token.ml
@@ -71,6 +71,8 @@ type token =
| PUT
| RET
| BE
+ | BREAK
+ | CONT
(* Type and type-state keywords *)
| TYPE
@@ -226,6 +228,8 @@ let rec string_of_tok t =
| PUT -> "put"
| RET -> "ret"
| BE -> "be"
+ | BREAK -> "break"
+ | CONT -> "cont"
(* Type and type-state keywords *)
| TYPE -> "type"