Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DeleteImport (0.64 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/imports.go

    	// This logic is taken from golang.org/x/tools/imports package.
    	return strings.Contains(importPath, ".")
    }
    
    // DeleteImport deletes the import path from the file f, if present.
    // If there are duplicate import declarations, all matching ones are deleted.
    func DeleteImport(fset *token.FileSet, f *ast.File, path string) (deleted bool) {
    	return DeleteNamedImport(fset, f, "", path)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 21:56:21 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  2. src/cmd/fix/fix.go

    		newImport.Path.ValuePos = prev.Pos()
    		newImport.EndPos = prev.Pos()
    	}
    
    	f.Imports = append(f.Imports, newImport)
    	return true
    }
    
    // deleteImport deletes the import path from the file f, if present.
    func deleteImport(f *ast.File, path string) (deleted bool) {
    	oldImport := importSpec(f, path)
    
    	// Find the import node that imports path, if any.
    	for i, decl := range f.Decls {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 14.6K bytes
    - Viewed (0)
Back to top