Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SetNeedctxt (0.66 sec)

  1. src/cmd/compile/internal/walk/closure.go

    		}
    		return clofn.Nname
    	}
    
    	// The closure is not trivial or directly called, so it's going to stay a closure.
    	ir.ClosureDebugRuntimeCheck(clo)
    	clofn.SetNeedctxt(true)
    
    	// The closure expression may be walked more than once if it appeared in composite
    	// literal initialization (e.g, see issue #49029).
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:56:08 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ir/func.go

    func (f *Func) SetWrapper(b bool)                  { f.flags.set(funcWrapper, b) }
    func (f *Func) SetABIWrapper(b bool)               { f.flags.set(funcABIWrapper, b) }
    func (f *Func) SetNeedctxt(b bool)                 { f.flags.set(funcNeedctxt, b) }
    func (f *Func) SetIsHiddenClosure(b bool)          { f.flags.set(funcIsHiddenClosure, b) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top