go/ast.CallExpr.Fun (field)
11 uses
go/ast (current package)
ast.go#L364: Fun Expr // function expression
ast.go#L485: func (x *CallExpr) Pos() token.Pos { return x.Fun.Pos() }
walk.go#L136: Walk(v, n.Fun)
go/parser
parser.go#L1284: return &ast.CallExpr{Fun: fun, Lparen: lparen, Args: list, Ellipsis: ellipsis, Rparen: rparen}
go/printer
nodes.go#L883: if _, ok := x.Fun.(*ast.FuncType); ok {
nodes.go#L886: wasIndented = p.possibleSelectorExpr(x.Fun, token.HighestPrec, depth)
nodes.go#L889: wasIndented = p.possibleSelectorExpr(x.Fun, token.HighestPrec, depth)
golang.org/x/pkgsite/internal/godoc
encode_ast.gen.go#L564: if x.Fun != nil {
encode_ast.gen.go#L566: e.EncodeAny(x.Fun)
encode_ast.gen.go#L605: x.Fun = d.DecodeAny().(ast.Expr)
golang.org/x/pkgsite/internal/godoc/dochtml/internal/render
synopsis.go#L144: fnc := OneLineNodeDepth(fset, n.Fun, depth)
 |
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. |