Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for initOrder (0.21 sec)

  1. src/cmd/compile/internal/types2/api_test.go

    		// number of initializers must match
    		if len(info.InitOrder) != len(test.inits) {
    			t.Errorf("package %s: got %d initializers; want %d", name, len(info.InitOrder), len(test.inits))
    			continue
    		}
    
    		// initializers must match
    		for i, want := range test.inits {
    			got := info.InitOrder[i].String()
    			if got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/staticinit/sched.go

    		return false
    	}
    	if rn.Embed != nil {
    		return false
    	}
    	orig := rn
    	r := rn.Defn.(*ir.AssignStmt).Y
    	if r == nil {
    		// types2.InitOrder doesn't include default initializers.
    		base.Fatalf("unexpected initializer: %v", rn.Defn)
    	}
    
    	// Variable may have been reassigned by a user-written function call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  3. api/go1.5.txt

    pkg go/types, type Info struct
    pkg go/types, type Info struct, Defs map[*ast.Ident]Object
    pkg go/types, type Info struct, Implicits map[ast.Node]Object
    pkg go/types, type Info struct, InitOrder []*Initializer
    pkg go/types, type Info struct, Scopes map[ast.Node]*Scope
    pkg go/types, type Info struct, Selections map[*ast.SelectorExpr]*Selection
    pkg go/types, type Info struct, Types map[ast.Expr]TypeAndValue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Importer", Type, 5},
    		{"ImporterFrom", Type, 6},
    		{"Info", Type, 5},
    		{"Info.Defs", Field, 5},
    		{"Info.FileVersions", Field, 22},
    		{"Info.Implicits", Field, 5},
    		{"Info.InitOrder", Field, 5},
    		{"Info.Instances", Field, 18},
    		{"Info.Scopes", Field, 5},
    		{"Info.Selections", Field, 5},
    		{"Info.Types", Field, 5},
    		{"Info.Uses", Field, 5},
    		{"Initializer", Type, 5},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top