Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for noValue$1 (0.21 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

    				check.record(&x)
    			}
    			resList = []*operand{&x}
    		} else {
    			// x is not a function instantiation (it may still be a generic function).
    			check.rawExpr(nil, &x, e, nil, true)
    			check.exclude(&x, 1<<novalue|1<<builtin|1<<typexpr)
    			if t, ok := x.typ.(*Tuple); ok && x.mode != invalid {
    				// x is a function call returning multiple values; it cannot be generic.
    				resList = make([]*operand, t.Len())
    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

    				check.record(&x)
    			}
    			resList = []*operand{&x}
    		} else {
    			// x is not a function instantiation (it may still be a generic function).
    			check.rawExpr(nil, &x, e, nil, true)
    			check.exclude(&x, 1<<novalue|1<<builtin|1<<typexpr)
    			if t, ok := x.typ.(*Tuple); ok && x.mode != invalid {
    				// x is a function call returning multiple values; it cannot be generic.
    				resList = make([]*operand, t.Len())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  5. test-site/activator-launch-1.3.2.jar

    t); private static void process(java.io.File, scala.collection.immutable.List, scala.Function1); public static void initialize$6fce7eb6$1593a72b(java.util.Properties, String, scala.collection.IterableLike); private static scala.runtime.Nothing$ noValue$1(PromptProperty); private void Initialize$(); } xsbt/boot/Initialize$$anonfun$1.class package xsbt.boot; public final synchronized class Initialize$$anonfun$1 extends scala.runtime.AbstractFunction1 implements scala.Serializable { private final scala.Function1...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
Back to top