Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for genericExpr (0.24 sec)

  1. src/go/types/expr.go

    	check.rawExpr(T, x, e, nil, false)
    	check.exclude(x, 1<<novalue|1<<builtin|1<<typexpr)
    	check.singleValue(x)
    }
    
    // genericExpr is like expr but the result may also be generic.
    func (check *Checker) genericExpr(x *operand, e ast.Expr) {
    	check.rawExpr(nil, x, e, nil, true)
    	check.exclude(x, 1<<novalue|1<<builtin|1<<typexpr)
    	check.singleValue(x)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    	check.rawExpr(T, x, e, nil, false)
    	check.exclude(x, 1<<novalue|1<<builtin|1<<typexpr)
    	check.singleValue(x)
    }
    
    // genericExpr is like expr but the result may also be generic.
    func (check *Checker) genericExpr(x *operand, e syntax.Expr) {
    	check.rawExpr(nil, x, e, nil, true)
    	check.exclude(x, 1<<novalue|1<<builtin|1<<typexpr)
    	check.singleValue(x)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/call.go

    					// use the usual expression evaluators.
    					check.record(&x)
    				}
    			} else {
    				// x is exactly one value (possibly invalid or uninstantiated generic function).
    				check.genericExpr(&x, e)
    			}
    			resList[i] = &x
    		}
    	}
    
    	return
    }
    
    // arguments type-checks arguments passed to a function call with the given signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  4. src/go/types/call.go

    					// use the usual expression evaluators.
    					check.record(&x)
    				}
    			} else {
    				// x is exactly one value (possibly invalid or uninstantiated generic function).
    				check.genericExpr(&x, e)
    			}
    			resList[i] = &x
    		}
    	}
    
    	return
    }
    
    // arguments type-checks arguments passed to a function call with the given signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top