1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

parser: fix a bad comment

This commit is contained in:
Alexander Medvednikov 2020-04-20 08:44:14 +02:00
parent 4b329cb89d
commit e006da7259

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{