v2: remove expr type from fn.v

pull/3931/head
Joe Conigliaro 2020-03-05 22:13:45 +11:00
parent 4d55a4c097
commit ee6a8a41f5
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ pub fn (p mut Parser) call_args() ([]ast.Expr,[]bool) {
else {
muts << false
}
e,_ := p.expr(0)
e := p.expr(0)
args << e
if p.tok.kind != .rpar {
p.check(.comma)