go/ast.SelectorExpr.Sel (field)
27 uses
go/ast (current package)
ast.go#L330: Sel *Ident // field selector
ast.go#L514: func (x *SelectorExpr) End() token.Pos { return x.Sel.End() }
filter.go#L69: return t.Sel
walk.go#L111: Walk(v, n.Sel)
go/doc
exports.go#L245: Sel: ast.NewIdent(typ.Sel.Name),
reader.go#L108: return t.Sel.Name, true
go/parser
parser.go#L660: return &ast.SelectorExpr{X: ident, Sel: sel}
parser.go#L1193: return &ast.SelectorExpr{X: x, Sel: sel}
parser.go#L1497: x = &ast.SelectorExpr{X: x, Sel: sel}
go/printer
nodes.go#L1050: if line := p.lineFor(x.Sel.Pos()); p.pos.IsValid() && p.pos.Line < line {
nodes.go#L1051: p.print(indent, newline, x.Sel.Pos(), x.Sel)
nodes.go#L1057: p.print(x.Sel.Pos(), x.Sel)
golang.org/x/pkgsite/internal/godoc
encode_ast.gen.go#L2702: if x.Sel != nil {
encode_ast.gen.go#L2704: encode_ast_Ident(e, x.Sel)
encode_ast.gen.go#L2729: decode_ast_Ident(d, &x.Sel)
golang.org/x/pkgsite/internal/godoc/dochtml/internal/render
idents.go#L350: return prefix + "." + n.Sel.String(), n.Sel
idents.go#L352: return n.Sel.String(), n.Sel
linkify.go#L680: m[node.Sel] = idr.toURL(path, node.Sel.Name)
golang.org/x/pkgsite/internal/godoc/internal/doc
exports.go#L245: Sel: ast.NewIdent(typ.Sel.Name),
reader.go#L110: return t.Sel.Name, true
 |
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. |