Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for dotdotdot (0.08 sec)

  1. src/runtime/mfinal.go

    	}
    	ft := (*functype)(unsafe.Pointer(ftyp))
    	if ft.IsVariadic() {
    		throw("runtime.SetFinalizer: cannot pass " + toRType(etyp).string() + " to finalizer " + toRType(ftyp).string() + " because dotdotdot")
    	}
    	if ft.InCount != 1 {
    		throw("runtime.SetFinalizer: cannot pass " + toRType(etyp).string() + " to finalizer " + toRType(ftyp).string())
    	}
    	fint := ft.InSlice()[0]
    	switch {
    	case fint == etyp:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    // back to the slice being appended to, and returns nil.
    // inplace MUST be set to false if the slice can be SSA'd.
    // Note: this code only handles fixed-count appends. Dotdotdot appends
    // have already been rewritten at this point (by walk).
    func (s *state) append(n *ir.CallExpr, inplace bool) *ssa.Value {
    	// If inplace is false, process as expression "append(s, e1, e2, e3)":
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top