type go/ast.BranchStmt

16 uses

	go/ast (current package)
		ast.go#L689: 	BranchStmt struct {
		ast.go#L782: func (s *BranchStmt) Pos() token.Pos     { return s.TokPos }
		ast.go#L816: func (s *BranchStmt) End() token.Pos {
		ast.go#L869: func (*BranchStmt) stmtNode()     {}
		walk.go#L229: 	case *BranchStmt:

	go/parser
		parser.go#L2032: func (p *parser) parseBranchStmt(tok token.Token) *ast.BranchStmt {
		parser.go#L2044: 	return &ast.BranchStmt{TokPos: pos, Tok: tok, Label: label}
		resolver.go#L316: 	case *ast.BranchStmt:

	go/printer
		nodes.go#L1376: 	case *ast.BranchStmt:

	go/types
		labels.go#L94: func (check *Checker) blockBranches(all *Scope, parent *block, lstmt *ast.LabeledStmt, list []ast.Stmt) []*ast.BranchStmt {
		labels.go#L99: 		fwdJumps, badJumps []*ast.BranchStmt
		labels.go#L110: 	jumpsOverVarDecl := func(jmp *ast.BranchStmt) bool {
		labels.go#L175: 		case *ast.BranchStmt:
		return.go#L39: 	case *ast.BranchStmt:
		return.go#L123: 	case *ast.BranchStmt:
		stmt.go#L528: 	case *ast.BranchStmt: