type go/ast.BranchStmt
15 uses
go/ast (current package)
ast.go#L673: BranchStmt struct {
ast.go#L766: func (s *BranchStmt) Pos() token.Pos { return s.TokPos }
ast.go#L800: func (s *BranchStmt) End() token.Pos {
ast.go#L853: func (*BranchStmt) stmtNode() {}
walk.go#L218: case *BranchStmt:
go/parser
parser.go#L1805: func (p *parser) parseBranchStmt(tok token.Token) *ast.BranchStmt {
parser.go#L1820: return &ast.BranchStmt{TokPos: pos, Tok: tok, Label: label}
go/printer
nodes.go#L1315: case *ast.BranchStmt:
golang.org/x/pkgsite/internal/godoc
encode_ast.gen.go#L499: func encode_ast_BranchStmt(e *codec.Encoder, x *ast.BranchStmt) {
encode_ast.gen.go#L518: func decode_ast_BranchStmt(d *codec.Decoder, p **ast.BranchStmt) {
encode_ast.gen.go#L524: *p = ref.(*ast.BranchStmt)
encode_ast.gen.go#L527: var x ast.BranchStmt
encode_ast.gen.go#L549: codec.Register(&ast.BranchStmt{},
encode_ast.gen.go#L550: func(e *codec.Encoder, x interface{}) { encode_ast_BranchStmt(e, x.(*ast.BranchStmt)) },
encode_ast.gen.go#L552: var x *ast.BranchStmt
![]() |
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. |