Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for selectStmt (0.13 sec)

  1. src/cmd/cover/cover.go

    				Rbrace: stmt.End(),
    			}
    			n.Else = block
    		case *ast.BlockStmt:
    			stmt.Lbrace = pos
    		default:
    			panic("unexpected node type in if")
    		}
    		ast.Walk(f, n.Else)
    		return nil
    	case *ast.SelectStmt:
    		// Don't annotate an empty select - creates a syntax error.
    		if n.Body == nil || len(n.Body.List) == 0 {
    			return nil
    		}
    	case *ast.SwitchStmt:
    		// Don't annotate an empty switch - creates a syntax error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. src/go/types/stmt.go

    				}
    				v.used = true // avoid usage error when checking entire function
    			}
    			if !used {
    				check.softErrorf(lhs, UnusedVar, "%s declared and not used", lhs.Name)
    			}
    		}
    
    	case *ast.SelectStmt:
    		inner |= breakOk
    
    		check.multipleDefaults(s.Body.List)
    
    		for _, s := range s.Body.List {
    			clause, _ := s.(*ast.CommClause)
    			if clause == nil {
    				continue // error reported before
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/stmt.go

    		check.simpleStmt(s.Init)
    
    		if g, _ := s.Tag.(*syntax.TypeSwitchGuard); g != nil {
    			check.typeSwitchStmt(inner|inTypeSwitch, s, g)
    		} else {
    			check.switchStmt(inner, s)
    		}
    
    	case *syntax.SelectStmt:
    		inner |= breakOk
    
    		check.multipleSelectDefaults(s.Body)
    
    		for i, clause := range s.Body {
    			if clause == nil {
    				continue // error reported before
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top