Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for execAll (0.06 sec)

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

    	if err != nil {
    		return nil, err
    	}
    
    	// In parallel, execute the DAG of analyzers.
    	var exec func(a *analysis.Analyzer) *action
    	var execAll func(analyzers []*analysis.Analyzer)
    	exec = func(a *analysis.Analyzer) *action {
    		act := actions[a]
    		act.once.Do(func() {
    			execAll(a.Requires) // prefetch dependencies in parallel
    
    			// The inputs to this analysis are the
    			// results of its prerequisites.
    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