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:
parent
4b329cb89d
commit
e006da7259
@ -418,8 +418,9 @@ pub fn (var p Parser) stmt() ast.Stmt {
|
||||
p.next()
|
||||
expr := p.expr(0)
|
||||
// mut call_expr := &ast.CallExpr(0) // TODO
|
||||
// { call_expr = it }
|
||||
match expr {
|
||||
ast.CallExpr { // call_expr = it }
|
||||
ast.CallExpr {}
|
||||
else {}
|
||||
}
|
||||
return ast.GoStmt{
|
||||
|
Loading…
Reference in New Issue
Block a user