diff options
| author | Daniel Gavin <danielgavin5@hotmail.com> | 2022-08-02 01:37:30 +0200 |
|---|---|---|
| committer | Daniel Gavin <danielgavin5@hotmail.com> | 2022-08-02 01:37:30 +0200 |
| commit | b7b21f1b56a867a33a27bde0b24ef07d8761fea5 (patch) | |
| tree | 9a5cbffc26e6b8c4fc086a1d564ebe752cb4359e /src/server | |
| parent | 8869f3f639c5dcf222d52e78f56996a4d5abf271 (diff) | |
Remove `#maybe`
Diffstat (limited to 'src/server')
| -rw-r--r-- | src/server/analysis.odin | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/server/analysis.odin b/src/server/analysis.odin index 9be28dd..f82b907 100644 --- a/src/server/analysis.odin +++ b/src/server/analysis.odin @@ -2155,7 +2155,6 @@ get_generic_assignment :: proc(file: ast.File, value: ^ast.Expr, ast_context: ^A } case ^Type_Assertion: if v.type != nil { - //This is the unique .? that can only be used with maybe if unary, ok := v.type.derived.(^ast.Unary_Expr); ok && unary.op.kind == .Question { append(results, cast(^ast.Expr)&v.node) } else { |