summaryrefslogtreecommitdiff
path: root/parsing/lexer.ml4
diff options
context:
space:
mode:
Diffstat (limited to 'parsing/lexer.ml4')
-rw-r--r--parsing/lexer.ml42
1 files changed, 1 insertions, 1 deletions
diff --git a/parsing/lexer.ml4 b/parsing/lexer.ml4
index caea30b2..c8e67f4d 100644
--- a/parsing/lexer.ml4
+++ b/parsing/lexer.ml4
@@ -656,7 +656,7 @@ let strip s =
let terminal s =
let s = strip s in
- if s = "" then failwith "empty token";
+ if s = "" then Util.error "empty token.";
if is_ident_not_keyword s then IDENT s
else if is_number s then INT s
else KEYWORD s