mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Remove unneeded semicolons
This commit is contained in:
@@ -2676,13 +2676,13 @@ parse_operand :: proc(p: ^Parser, lhs: bool) -> ^ast.Expr {
|
|||||||
p.expr_level = prev_level
|
p.expr_level = prev_level
|
||||||
|
|
||||||
if is_no_nil && is_maybe {
|
if is_no_nil && is_maybe {
|
||||||
error(p, p.curr_tok.pos, "#maybe and #no_nil cannot be applied together");
|
error(p, p.curr_tok.pos, "#maybe and #no_nil cannot be applied together")
|
||||||
}
|
}
|
||||||
if is_no_nil && is_shared_nil {
|
if is_no_nil && is_shared_nil {
|
||||||
error(p, p.curr_tok.pos, "#shared_nil and #no_nil cannot be applied together");
|
error(p, p.curr_tok.pos, "#shared_nil and #no_nil cannot be applied together")
|
||||||
}
|
}
|
||||||
if is_shared_nil && is_maybe {
|
if is_shared_nil && is_maybe {
|
||||||
error(p, p.curr_tok.pos, "#maybe and #shared_nil cannot be applied together");
|
error(p, p.curr_tok.pos, "#maybe and #shared_nil cannot be applied together")
|
||||||
}
|
}
|
||||||
|
|
||||||
union_kind := ast.Union_Type_Kind.Normal
|
union_kind := ast.Union_Type_Kind.Normal
|
||||||
|
|||||||
Reference in New Issue
Block a user