Skip to content

Commit 196df6f

Browse files
committed
go/ast: better documentation for CallExpr node
Fixes #17222. Change-Id: Iffffc8cbb8627d06afa9066246b68fa2da4600e3 Reviewed-on: https://go-review.googlesource.com/29810 Reviewed-by: Brad Fitzpatrick <[email protected]> Reviewed-by: Matthew Dempsky <[email protected]>
1 parent 0a18561 commit 196df6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/go/ast/ast.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ type (
317317
Fun Expr // function expression
318318
Lparen token.Pos // position of "("
319319
Args []Expr // function arguments; or nil
320-
Ellipsis token.Pos // position of "...", if any
320+
Ellipsis token.Pos // position of "..." (token.NoPos if there is no "...")
321321
Rparen token.Pos // position of ")"
322322
}
323323

0 commit comments

Comments
 (0)