Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for forStmt (0.8 sec)

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

    	s := new(DeclStmt)
    	s.pos = p.pos()
    
    	p.next() // _Const, _Type, or _Var
    	s.DeclList = p.appendGroup(nil, f)
    
    	return s
    }
    
    func (p *parser) forStmt() Stmt {
    	if trace {
    		defer p.trace("forStmt")()
    	}
    
    	s := new(ForStmt)
    	s.pos = p.pos()
    
    	s.Init, s.Cond, s.Post = p.header(_For)
    	s.Body = p.blockStmt("for clause")
    
    	return s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. src/go/types/api_test.go

    			case *ast.SwitchStmt:
    				kind = "switch"
    			case *ast.TypeSwitchStmt:
    				kind = "type switch"
    			case *ast.CaseClause:
    				kind = "case"
    			case *ast.CommClause:
    				kind = "comm"
    			case *ast.ForStmt:
    				kind = "for"
    			case *ast.RangeStmt:
    				kind = "range"
    			}
    
    			// look for matching scope description
    			desc := kind + ":" + strings.Join(scope.Names(), " ")
    			found := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top