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()
|
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{
|
||||||
|
Loading…
Reference in New Issue
Block a user