parser: fix a bad comment

pull/4518/head
Alexander Medvednikov 2020-04-20 08:44:14 +02:00
parent 4b329cb89d
commit e006da7259
1 changed files with 2 additions and 1 deletions

View File

@ -418,8 +418,9 @@ pub fn (var p Parser) stmt() ast.Stmt {
p.next() p.next()
expr := p.expr(0) expr := p.expr(0)
// mut call_expr := &ast.CallExpr(0) // TODO // mut call_expr := &ast.CallExpr(0) // TODO
// { call_expr = it }
match expr { match expr {
ast.CallExpr { // call_expr = it } ast.CallExpr {}
else {} else {}
} }
return ast.GoStmt{ return ast.GoStmt{