Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for newChecker (0.17 sec)

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

    type actionDesc struct {
    	pos    poser
    	format string
    	args   []interface{}
    }
    
    // A Checker maintains the state of the type checker.
    // It must be created with NewChecker.
    type Checker struct {
    	// package information
    	// (initialized by NewChecker, valid for the life-time of checker)
    	conf *Config
    	ctxt *Context // context for de-duplicating instances
    	pkg  *Package
    	*Info
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  2. src/go/types/check.go

    type actionDesc struct {
    	pos    positioner
    	format string
    	args   []any
    }
    
    // A Checker maintains the state of the type checker.
    // It must be created with [NewChecker].
    type Checker struct {
    	// package information
    	// (initialized by NewChecker, valid for the life-time of checker)
    	conf *Config
    	ctxt *Context // context for de-duplicating instances
    	fset *token.FileSet
    	pkg  *Package
    	*Info
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api.go

    // Package types2 declares the data types and implements
    // the algorithms for type-checking of Go packages. Use
    // Config.Check to invoke the type checker for a package.
    // Alternatively, create a new type checker with NewChecker
    // and invoke it incrementally by calling Checker.Files.
    //
    // Type-checking consists of several interdependent phases:
    //
    // Name resolution maps each identifier (syntax.Name) in the program to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. src/go/types/api.go

    // Package types declares the data types and implements
    // the algorithms for type-checking of Go packages. Use
    // [Config.Check] to invoke the type checker for a package.
    // Alternatively, create a new type checker with [NewChecker]
    // and invoke it incrementally by calling [Checker.Files].
    //
    // Type-checking consists of several interdependent phases:
    //
    // Name resolution maps each identifier ([ast.Ident]) in the program
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/issues_test.go

    	var conf Config
    	info := &Info{Defs: make(map[*syntax.Name]Object)}
    	check := NewChecker(&conf, NewPackage("", "p"), info)
    	if err := check.Files([]*syntax.File{f1, f2}); err != nil {
    		t.Fatal(err)
    	}
    	want := printInfo(info)
    
    	// type-check incrementally
    	info = &Info{Defs: make(map[*syntax.Name]Object)}
    	check = NewChecker(&conf, NewPackage("", "p"), info)
    	if err := check.Files([]*syntax.File{f1}); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  6. src/go/types/issues_test.go

    	var conf Config
    	info := &Info{Defs: make(map[*ast.Ident]Object)}
    	check := NewChecker(&conf, fset, NewPackage("", "p"), info)
    	if err := check.Files([]*ast.File{f1, f2}); err != nil {
    		t.Fatal(err)
    	}
    	want := printInfo(info)
    
    	// type-check incrementally
    	info = &Info{Defs: make(map[*ast.Ident]Object)}
    	check = NewChecker(&conf, fset, NewPackage("", "p"), info)
    	if err := check.Files([]*ast.File{f1}); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  7. api/go1.5.txt

    pkg go/types, func MissingMethod(Type, *Interface, bool) (*Func, bool)
    pkg go/types, func NewArray(Type, int64) *Array
    pkg go/types, func NewChan(ChanDir, Type) *Chan
    pkg go/types, func NewChecker(*Config, *token.FileSet, *Package, *Info) *Checker
    pkg go/types, func NewConst(token.Pos, *Package, string, Type, constant.Value) *Const
    pkg go/types, func NewField(token.Pos, *Package, string, Type, bool) *Var
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
Back to top