aboutsummaryrefslogtreecommitdiff
path: root/src/server
diff options
context:
space:
mode:
authorBrad Lewis <22850972+BradLewis@users.noreply.github.com>2025-08-11 16:19:36 -0400
committerBrad Lewis <22850972+BradLewis@users.noreply.github.com>2025-08-11 16:19:36 -0400
commitea35f53bb5f972aa417c58160d80ff357b4b597b (patch)
tree5126d54e818ba597a15b35e447bfc491d44e8f80 /src/server
parent55acd3fe129551dd0ce231390f8d07a446754efe (diff)
Add missing binary expr operators
Diffstat (limited to 'src/server')
-rw-r--r--src/server/analysis.odin2
1 files changed, 1 insertions, 1 deletions
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,
}