diff options
Diffstat (limited to 'lib/lexer.mll')
-rw-r--r-- | lib/lexer.mll | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/lexer.mll b/lib/lexer.mll index 7d5b867..d3d5e5b 100644 --- a/lib/lexer.mll +++ b/lib/lexer.mll @@ -245,6 +245,7 @@ rule token = parse | '-' { MINUS } | "+=" { INCR } | "-=" { DECR } +| "*=" { MULT_EQUAL } | '/' { DIV } | '*' { STAR } | ':' { |