From ea35f53bb5f972aa417c58160d80ff357b4b597b Mon Sep 17 00:00:00 2001 From: Brad Lewis <22850972+BradLewis@users.noreply.github.com> Date: Mon, 11 Aug 2025 16:19:36 -0400 Subject: Add missing binary expr operators --- src/server/analysis.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/server') diff --git a/src/server/analysis.odin b/src/server/analysis.odin index e001294..4401d5b 100644 --- a/src/server/analysis.odin +++ b/src/server/analysis.odin @@ -2738,7 +2738,7 @@ resolve_binary_expression :: proc(ast_context: ^AstContext, binary: ^ast.Binary_ ok_a, ok_b: bool #partial switch binary.op.kind { - case .Cmp_Eq, .Gt, .Gt_Eq, .Lt, .Lt_Eq: + case .Cmp_Eq, .Gt, .Gt_Eq, .Lt, .Lt_Eq, .Not_Eq, .In, .Not_In: symbol_a.value = SymbolUntypedValue { type = .Bool, } -- cgit v1.2.3