type go/ast.SelectStmt
15 uses
go/ast (current package)
ast.go#L728: SelectStmt struct {
ast.go#L773: func (s *SelectStmt) Pos() token.Pos { return s.Select }
ast.go#L835: func (s *SelectStmt) End() token.Pos { return s.Body.End() }
ast.go#L860: func (*SelectStmt) stmtNode() {}
walk.go#L262: case *SelectStmt:
go/parser
parser.go#L2115: func (p *parser) parseSelectStmt() *ast.SelectStmt {
parser.go#L2130: return &ast.SelectStmt{Select: pos, Body: body}
go/printer
nodes.go#L1381: case *ast.SelectStmt:
golang.org/x/pkgsite/internal/godoc
encode_ast.gen.go#L2639: func encode_ast_SelectStmt(e *codec.Encoder, x *ast.SelectStmt) {
encode_ast.gen.go#L2654: func decode_ast_SelectStmt(d *codec.Decoder, p **ast.SelectStmt) {
encode_ast.gen.go#L2660: *p = ref.(*ast.SelectStmt)
encode_ast.gen.go#L2663: var x ast.SelectStmt
encode_ast.gen.go#L2683: codec.Register(&ast.SelectStmt{},
encode_ast.gen.go#L2684: func(e *codec.Encoder, x interface{}) { encode_ast_SelectStmt(e, x.(*ast.SelectStmt)) },
encode_ast.gen.go#L2686: var x *ast.SelectStmt
![]() |
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. |