Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for declImports (0.2 sec)

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

    func importPath(s *ast.ImportSpec) string {
    	t, err := strconv.Unquote(s.Path.Value)
    	if err != nil {
    		return ""
    	}
    	return t
    }
    
    // declImports reports whether gen contains an import of path.
    func declImports(gen *ast.GenDecl, path string) bool {
    	if gen.Tok != token.IMPORT {
    		return false
    	}
    	for _, spec := range gen.Specs {
    		impspec := spec.(*ast.ImportSpec)
    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

    func importPath(s *ast.ImportSpec) string {
    	t, err := strconv.Unquote(s.Path.Value)
    	if err == nil {
    		return t
    	}
    	return ""
    }
    
    // declImports reports whether gen contains an import of path.
    func declImports(gen *ast.GenDecl, path string) bool {
    	if gen.Tok != token.IMPORT {
    		return false
    	}
    	for _, spec := range gen.Specs {
    		impspec := spec.(*ast.ImportSpec)
    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