Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for simpleStmt (0.51 sec)

  1. src/cmd/compile/internal/syntax/nodes.go

    		stmt
    	}
    
    	IfStmt struct {
    		Init SimpleStmt
    		Cond Expr
    		Then *BlockStmt
    		Else Stmt // either nil, *IfStmt, or *BlockStmt
    		stmt
    	}
    
    	ForStmt struct {
    		Init SimpleStmt // incl. *RangeClause
    		Cond Expr
    		Post SimpleStmt
    		Body *BlockStmt
    		stmt
    	}
    
    	SwitchStmt struct {
    		Init   SimpleStmt
    		Tag    Expr // incl. *TypeSwitchGuard
    		Body   []*CaseClause
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top