From 46fd5a31d2e07b9df10d07dd900b529aca06a795 Mon Sep 17 00:00:00 2001 From: Chimrod <> Date: Tue, 26 Sep 2023 21:44:37 +0200 Subject: Added the missing *= operator --- lib/lexer.mll | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/lexer.mll') 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 } | ':' { -- cgit v1.2.3