Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for donePaths (0.07 sec)

  1. cmd/preferredimports/preferredimports.go

    	fset      *token.FileSet // positions are relative to fset
    	ctx       build.Context
    	failed    bool
    	donePaths map[string]interface{}
    }
    
    func newAnalyzer() *analyzer {
    	ctx := build.Default
    	ctx.CgoEnabled = true
    
    	a := &analyzer{
    		fset:      token.NewFileSet(),
    		ctx:       ctx,
    		donePaths: make(map[string]interface{}),
    	}
    
    	return a
    }
    
    // collect extracts test metadata from a file.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top