Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for hasBreakCommList (0.19 sec)

  1. src/cmd/compile/internal/types2/return.go

    			return true
    		}
    
    	case *syntax.SwitchStmt:
    		if label != "" && hasBreakCaseList(s.Body, label, false) {
    			return true
    		}
    
    	case *syntax.SelectStmt:
    		if label != "" && hasBreakCommList(s.Body, label, false) {
    			return true
    		}
    
    	case *syntax.ForStmt:
    		if label != "" && hasBreak(s.Body, label, false) {
    			return true
    		}
    	}
    
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top