diff options
| author | Bradley Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-08-11 16:25:16 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-11 16:25:16 -0400 |
| commit | 03cbe19af2b3c74519be11c4de220eb9d36fa90d (patch) | |
| tree | 5126d54e818ba597a15b35e447bfc491d44e8f80 /src | |
| parent | 55acd3fe129551dd0ce231390f8d07a446754efe (diff) | |
| parent | ea35f53bb5f972aa417c58160d80ff357b4b597b (diff) | |
Merge pull request #854 from BradLewis/fix/binary-expr-not-eq
Add missing binary expr operators
Diffstat (limited to 'src')
| -rw-r--r-- | src/server/analysis.odin | 2 |
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, } |