ci: vfmt parser.v
parent
1b6cccaf6d
commit
b1bb1d361a
|
@ -2974,7 +2974,7 @@ fn (mut p Parser) return_stmt() ast.Return {
|
||||||
p.next()
|
p.next()
|
||||||
// no return
|
// no return
|
||||||
mut comments := p.eat_comments()
|
mut comments := p.eat_comments()
|
||||||
if p.tok.kind == .rcbr || ( p.tok.kind == .name && p.peek_tok.kind == .colon ) {
|
if p.tok.kind == .rcbr || (p.tok.kind == .name && p.peek_tok.kind == .colon) {
|
||||||
return ast.Return{
|
return ast.Return{
|
||||||
comments: comments
|
comments: comments
|
||||||
pos: first_pos
|
pos: first_pos
|
||||||
|
|
Loading…
Reference in New Issue