Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for selectStmt (0.19 sec)

  1. doc/go_spec.html

    </p>
    
    <pre class="ebnf">
    Statement =
    	Declaration | LabeledStmt | SimpleStmt |
    	GoStmt | ReturnStmt | BreakStmt | ContinueStmt | GotoStmt |
    	FallthroughStmt | Block | IfStmt | SwitchStmt | SelectStmt | ForStmt |
    	DeferStmt .
    
    SimpleStmt = EmptyStmt | ExpressionStmt | SendStmt | IncDecStmt | Assignment | ShortVarDecl .
    </pre>
    
    <h3 id="Terminating_statements">Terminating statements</h3>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  2. src/cmd/compile/internal/ssagen/ssa.go

    		s.breakTo = bEnd
    		var sym *types.Sym
    		var body ir.Nodes
    		if n.Op() == ir.OSWITCH {
    			n := n.(*ir.SwitchStmt)
    			sym = n.Label
    			body = n.Compiled
    		} else {
    			n := n.(*ir.SelectStmt)
    			sym = n.Label
    			body = n.Compiled
    		}
    
    		var lab *ssaLabel
    		if sym != nil {
    			// labeled
    			lab = s.label(sym)
    			lab.breakTarget = bEnd
    		}
    
    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