type go/ast.CallExpr
21 uses
go/ast (current package)
ast.go#L363: CallExpr struct {
ast.go#L485: func (x *CallExpr) Pos() token.Pos { return x.Fun.Pos() }
ast.go#L518: func (x *CallExpr) End() token.Pos { return x.Rparen + 1 }
ast.go#L549: func (*CallExpr) exprNode() {}
ast.go#L655: Call *CallExpr
ast.go#L661: Call *CallExpr
walk.go#L135: case *CallExpr:
go/parser
parser.go#L1261: func (p *parser) parseCallOrConversion(fun ast.Expr) *ast.CallExpr {
parser.go#L1284: return &ast.CallExpr{Fun: fun, Lparen: lparen, Args: list, Ellipsis: ellipsis, Rparen: rparen}
parser.go#L1395: case *ast.CallExpr:
parser.go#L1747: func (p *parser) parseCallExpr(callType string) *ast.CallExpr {
parser.go#L1749: if call, isCall := x.(*ast.CallExpr); isCall {
go/printer
nodes.go#L878: case *ast.CallExpr:
golang.org/x/pkgsite/internal/godoc
encode_ast.gen.go#L560: func encode_ast_CallExpr(e *codec.Encoder, x *ast.CallExpr) {
encode_ast.gen.go#L587: func decode_ast_CallExpr(d *codec.Decoder, p **ast.CallExpr) {
encode_ast.gen.go#L593: *p = ref.(*ast.CallExpr)
encode_ast.gen.go#L596: var x ast.CallExpr
encode_ast.gen.go#L622: codec.Register(&ast.CallExpr{},
encode_ast.gen.go#L623: func(e *codec.Encoder, x interface{}) { encode_ast_CallExpr(e, x.(*ast.CallExpr)) },
encode_ast.gen.go#L625: var x *ast.CallExpr
golang.org/x/pkgsite/internal/godoc/dochtml/internal/render
synopsis.go#L143: case *ast.CallExpr:
 |
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. |