Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for BlockStmt (0.17 sec)

  1. src/cmd/internal/dwarf/putvarabbrevgen_test.go

    		Op: token.EQL,
    		X:  &ast.SelectorExpr{X: &ast.Ident{Name: "v"}, Sel: &ast.Ident{Name: "Tag"}},
    		Y:  &ast.Ident{Name: "DW_TAG_variable"}}}
    	r.Body = &ast.BlockStmt{List: []ast.Stmt{
    		pvacfgvisitnode(pvacfg, "DW_TAG_variable", []*pvacfgnode{}, abbrevs),
    	}}
    	r.Else = &ast.BlockStmt{List: []ast.Stmt{
    		pvacfgvisitnode(pvacfg, "DW_TAG_formal_parameter", []*pvacfgnode{}, abbrevs),
    	}}
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. 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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. src/go/types/return.go

    			return true
    		}
    
    	case *ast.ReturnStmt:
    		return true
    
    	case *ast.BranchStmt:
    		if s.Tok == token.GOTO || s.Tok == token.FALLTHROUGH {
    			return true
    		}
    
    	case *ast.BlockStmt:
    		return check.isTerminatingList(s.List, "")
    
    	case *ast.IfStmt:
    		if s.Else != nil &&
    			check.isTerminating(s.Body, "") &&
    			check.isTerminating(s.Else, "") {
    			return true
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. src/go/ast/ast.go

    		TokPos token.Pos   // position of Tok
    		Tok    token.Token // keyword token (BREAK, CONTINUE, GOTO, FALLTHROUGH)
    		Label  *Ident      // label name; or nil
    	}
    
    	// A BlockStmt node represents a braced statement list.
    	BlockStmt struct {
    		Lbrace token.Pos // position of "{"
    		List   []Stmt
    		Rbrace token.Pos // position of "}", if any (may be absent due to syntax error)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/positions.go

    		// case *StructType:
    		// case *Field:
    		// case *InterfaceType:
    		// case *FuncType:
    		// case *MapType:
    		// case *ChanType:
    
    		// statements
    		// case *EmptyStmt:
    		// case *LabeledStmt:
    		// case *BlockStmt:
    		// case *ExprStmt:
    		case *SendStmt:
    			m = n.Chan
    		// case *DeclStmt:
    		case *AssignStmt:
    			m = n.Lhs
    		// case *BranchStmt:
    		// case *CallStmt:
    		// case *ReturnStmt:
    		// case *IfStmt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/return.go

    			return true
    		}
    
    	case *syntax.ReturnStmt:
    		return true
    
    	case *syntax.BranchStmt:
    		if s.Tok == syntax.Goto || s.Tok == syntax.Fallthrough {
    			return true
    		}
    
    	case *syntax.BlockStmt:
    		return check.isTerminatingList(s.List, "")
    
    	case *syntax.IfStmt:
    		if s.Else != nil &&
    			check.isTerminating(s.Then, "") &&
    			check.isTerminating(s.Else, "") {
    			return true
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unreachable/unreachable.go

    	inspect := pass.ResultOf[inspect.Analyzer].(*inspector.Inspector)
    
    	nodeFilter := []ast.Node{
    		(*ast.FuncDecl)(nil),
    		(*ast.FuncLit)(nil),
    	}
    	inspect.Preorder(nodeFilter, func(n ast.Node) {
    		var body *ast.BlockStmt
    		switch n := n.(type) {
    		case *ast.FuncDecl:
    			body = n.Body
    		case *ast.FuncLit:
    			body = n.Body
    		}
    		if body == nil {
    			return
    		}
    		d := &deadState{
    			pass:     pass,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/rangefunc/rewrite.go

    // A rewriter implements rewriting the range-over-funcs in a given function.
    type rewriter struct {
    	pkg   *types2.Package
    	info  *types2.Info
    	sig   *types2.Signature
    	outer *syntax.FuncType
    	body  *syntax.BlockStmt
    
    	// References to important types and values.
    	any   types2.Object
    	bool  types2.Object
    	int   types2.Object
    	true  types2.Object
    	false types2.Object
    
    	// Branch numbering, computed as needed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  9. src/go/parser/parser_test.go

    	{name: "for1", format: "package main; func main() { «for x { «» }» }", scope: true, scopeMultiplier: 2},                          // Scopes: ForStmt, BlockStmt
    	{name: "for3", format: "package main; func main() { «for f(); g(); h() { «» }» }", scope: true, scopeMultiplier: 2},              // Scopes: ForStmt, BlockStmt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/labels.go

    package types2
    
    import (
    	"cmd/compile/internal/syntax"
    	. "internal/types/errors"
    )
    
    // labels checks correct label use in body.
    func (check *Checker) labels(body *syntax.BlockStmt) {
    	// set of all labels in this body
    	all := NewScope(nil, body.Pos(), syntax.EndPos(body), "label")
    
    	fwdJumps := check.blockBranches(all, nil, nil, body.List)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top