parser: remove unnecessary match as code (#6972)
parent
04ecc4737c
commit
18cf36a22c
|
@ -247,10 +247,6 @@ pub fn (mut p Parser) expr_with_left(left ast.Expr, precedence int, is_stmt_iden
|
||||||
node = p.index_expr(node)
|
node = p.index_expr(node)
|
||||||
p.is_stmt_ident = is_stmt_ident
|
p.is_stmt_ident = is_stmt_ident
|
||||||
} else if p.tok.kind == .key_as {
|
} else if p.tok.kind == .key_as {
|
||||||
// sum type match `match x as alias` so return early
|
|
||||||
if p.inside_match {
|
|
||||||
return node
|
|
||||||
}
|
|
||||||
// sum type as cast `x := SumType as Variant`
|
// sum type as cast `x := SumType as Variant`
|
||||||
pos := p.tok.position()
|
pos := p.tok.position()
|
||||||
p.next()
|
p.next()
|
||||||
|
|
Loading…
Reference in New Issue