go/ast.CallExpr.Rparen (field)
10 uses
go/ast (current package)
ast.go#L368: Rparen token.Pos // position of ")"
ast.go#L518: func (x *CallExpr) End() token.Pos { return x.Rparen + 1 }
go/parser
parser.go#L1284: return &ast.CallExpr{Fun: fun, Lparen: lparen, Args: list, Ellipsis: ellipsis, Rparen: rparen}
go/printer
nodes.go#L895: if x.Rparen.IsValid() && p.lineFor(x.Ellipsis) < p.lineFor(x.Rparen) {
nodes.go#L899: p.exprList(x.Lparen, x.Args, depth, commaTerm, x.Rparen, false)
nodes.go#L901: p.print(x.Rparen, token.RPAREN)
golang.org/x/pkgsite/internal/godoc
encode_ast.gen.go#L580: if x.Rparen != 0 {
encode_ast.gen.go#L582: e.EncodeInt(int64(x.Rparen))
encode_ast.gen.go#L613: x.Rparen = token.Pos(d.DecodeInt())
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |