Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Player (0.58 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    	// Dcl list, including PARAMOUT nodes that correspond to output
    	// params passed in registers. Walk the Dcl list and capture these
    	// nodes to a side list, so that we'll have them available during
    	// DWARF-gen later on. See issue 48573 for more details.
    	var debugInfo ssa.FuncDebug
    	for _, n := range fn.Dcl {
    		if n.Class == ir.PPARAMOUT && n.IsOutputParamInRegisters() {
    			debugInfo.RegOutputParams = append(debugInfo.RegOutputParams, n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. ChangeLog.md

    - [`KT-26116`](https://youtrack.jetbrains.com/issue/KT-26116) No error when class member val is referenced in inline function before it is assigned later on
    - [`KT-25311`](https://youtrack.jetbrains.com/issue/KT-25311) Calls on error type values lead to false-positive unreachable code
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  3. doc/go_spec.html

    The expression <code>x</code> is evaluated and saved during the evaluation of the
    method value; the saved copy is then used as the receiver in any calls,
    which may be executed later.
    </p>
    
    <pre>
    type S struct { *T }
    type T int
    func (t T) M() { print(t) }
    
    t := new(T)
    s := S{T: t}
    f := t.M                    // receiver *t is evaluated and stored in f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top