Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for downes (0.27 sec)

  1. doc/go_spec.html

    in a declaration, but it does not introduce a binding and thus is not declared.
    In the package block, the identifier <code>init</code> may only be used for
    <a href="#Package_initialization"><code>init</code> function</a> declarations,
    and like the blank identifier it does not introduce a new binding.
    </p>
    
    <pre class="ebnf">
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    			lab.breakTarget = bEnd
    		}
    
    		// generate body
    		s.startBlock(bBody)
    		s.stmtList(n.Body)
    
    		// tear down continue/break
    		s.continueTo = prevContinue
    		s.breakTo = prevBreak
    		if lab != nil {
    			lab.continueTarget = nil
    			lab.breakTarget = nil
    		}
    
    		// done with body, goto incr
    		if b := s.endBlock(); b != nil {
    			b.AddEdgeTo(bIncr)
    		}
    
    		// generate incr
    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