diff options
author | Chimrod <> | 2023-09-26 21:44:37 +0200 |
---|---|---|
committer | Chimrod <> | 2023-09-26 21:44:37 +0200 |
commit | 46fd5a31d2e07b9df10d07dd900b529aca06a795 (patch) | |
tree | 471ab32b8d0674d0ab6cc58318afb844a88a5a6b /lib/lexer.mll | |
parent | b65767c276124fff7412ef0112929d3aab16553b (diff) |
Added the missing *= operator
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 } | ':' { |