This commit is contained in:
MCorange 2023-03-20 19:26:11 +02:00
parent 3953cd7ad6
commit 5aa2393c8f

View File

@ -127,8 +127,12 @@ pub fn lookup_word<P: Deref<Target = (String, u32, u32)>>(s: String, _pos: P) ->
("+", OpType::Plus),
("-", OpType::Minus),
("=", OpType::Equals),
("!=", OpType::NotEquals),
(">", OpType::Gt),
("<", OpType::Lt),
(">=", OpType::Ge),
("<=", OpType::Le),
("band", OpType::Band),
("bor", OpType::Bor),
("shr", OpType::Shr),