Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for genericExprList (0.12 sec)

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

    			// targs have been consumed; proceed with checking arguments of the
    			// non-generic signature.
    			targs = nil
    			xlist = nil
    		}
    	}
    
    	// evaluate arguments
    	args, atargs, atxlist := check.genericExprList(call.ArgList)
    	sig = check.arguments(call, sig, targs, xlist, args, atargs, atxlist)
    
    	if wasGeneric && sig.TypeParams().Len() == 0 {
    		// update the recorded type of call.Fun to its instantiated type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  2. src/go/types/call.go

    			// targs have been consumed; proceed with checking arguments of the
    			// non-generic signature.
    			targs = nil
    			xlist = nil
    		}
    	}
    
    	// evaluate arguments
    	args, atargs, atxlist := check.genericExprList(call.Args)
    	sig = check.arguments(call, sig, targs, xlist, args, atargs, atxlist)
    
    	if wasGeneric && sig.TypeParams().Len() == 0 {
    		// Update the recorded type of call.Fun to its instantiated type.
    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