type go/ast.SelectorExpr
33 uses
go/ast (current package)
ast.go#L328: SelectorExpr struct {
ast.go#L481: func (x *SelectorExpr) Pos() token.Pos { return x.X.Pos() }
ast.go#L514: func (x *SelectorExpr) End() token.Pos { return x.Sel.End() }
ast.go#L545: func (*SelectorExpr) exprNode() {}
filter.go#L67: case *SelectorExpr:
walk.go#L109: case *SelectorExpr:
go/doc
example.go#L209: case *ast.SelectorExpr:
exports.go#L241: case *ast.SelectorExpr:
exports.go#L244: return &ast.SelectorExpr{
reader.go#L104: case *ast.SelectorExpr:
go/parser
parser.go#L660: return &ast.SelectorExpr{X: ident, Sel: sel}
parser.go#L1193: return &ast.SelectorExpr{X: x, Sel: sel}
parser.go#L1386: case *ast.SelectorExpr:
parser.go#L1412: case *ast.SelectorExpr:
parser.go#L1426: case *ast.SelectorExpr:
parser.go#L1497: x = &ast.SelectorExpr{X: x, Sel: sel}
go/printer
nodes.go#L817: case *ast.SelectorExpr:
nodes.go#L1038: if x, ok := expr.(*ast.SelectorExpr); ok {
nodes.go#L1047: func (p *printer) selectorExpr(x *ast.SelectorExpr, depth int, isMethod bool) bool {
nodes.go#L1125: case *ast.SelectorExpr:
golang.org/x/pkgsite/internal/godoc
encode_ast.gen.go#L2694: func encode_ast_SelectorExpr(e *codec.Encoder, x *ast.SelectorExpr) {
encode_ast.gen.go#L2709: func decode_ast_SelectorExpr(d *codec.Decoder, p **ast.SelectorExpr) {
encode_ast.gen.go#L2715: *p = ref.(*ast.SelectorExpr)
encode_ast.gen.go#L2718: var x ast.SelectorExpr
encode_ast.gen.go#L2738: codec.Register(&ast.SelectorExpr{},
encode_ast.gen.go#L2739: func(e *codec.Encoder, x interface{}) { encode_ast_SelectorExpr(e, x.(*ast.SelectorExpr)) },
encode_ast.gen.go#L2741: var x *ast.SelectorExpr
golang.org/x/pkgsite/internal/godoc/dochtml/internal/render
idents.go#L348: case *ast.SelectorExpr:
linkify.go#L671: case *ast.SelectorExpr:
golang.org/x/pkgsite/internal/godoc/internal/doc
example.go#L323: case *ast.SelectorExpr:
exports.go#L241: case *ast.SelectorExpr:
exports.go#L244: return &ast.SelectorExpr{
reader.go#L106: case *ast.SelectorExpr:
 |
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. |