Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TypeErrors (0.09 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    	// serializable.
    	Run func(*Pass) (interface{}, error)
    
    	// RunDespiteErrors allows the driver to invoke
    	// the Run method of this analyzer even on a
    	// package that contains parse or type errors.
    	// The Pass.TypeErrors field may consequently be non-empty.
    	RunDespiteErrors bool
    
    	// Requires is a set of analyzers that must run successfully
    	// before this one on a given package. This analyzer may inspect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    				Files:             files,
    				OtherFiles:        cfg.NonGoFiles,
    				IgnoredFiles:      cfg.IgnoredFiles,
    				Pkg:               pkg,
    				TypesInfo:         info,
    				TypesSizes:        tc.Sizes,
    				TypeErrors:        nil, // unitchecker doesn't RunDespiteErrors
    				ResultOf:          inputs,
    				Report:            func(d analysis.Diagnostic) { act.diagnostics = append(act.diagnostics, d) },
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top