Namespace: go.std.go.importer
v1.0Contents
Summary
Provides a low-level interface to the go/importer package.
Package importer provides access to export data importers.
Index
Legend
-
Constant
Variable
Function
Macro
Special form
Type
GoVar
Receiver/Method
Constants
Constants are variables with :const true in their metadata. Joker currently does not recognize them as special; as such, it allows redefining them or their values.-
(None.)
Variables
-
(None.)
Functions, Macros, and Special Forms
-
Default
Function v1.0(Default)
Default returns an Importer for the compiler that built the running binary.
If available, the result implements types.ImporterFrom.
Go returns: go/types.Importer
Joker input arguments: []
Joker returns: ^go.std.go.types/Importer -
For
Function v1.0(For compiler lookup)
For calls ForCompiler with a new FileSet.
Deprecated: Use ForCompiler, which populates a FileSet
with the positions of objects created by the importer.
Go input arguments: (compiler string, lookup Lookup)
Go returns: go/types.Importer
Joker input arguments: [^String compiler, ^Lookup lookup]
Joker returns: ^go.std.go.types/Importer -
ForCompiler
Function v1.0(ForCompiler fset compiler lookup)
ForCompiler returns an Importer for importing from installed packages
for the compilers "gc" and "gccgo", or for importing directly
from the source if the compiler argument is "source". In this
latter case, importing may fail under circumstances where the
exported API is not entirely defined in pure Go source code
(if the package API depends on cgo-defined entities, the type
checker won't have access to those).
The lookup function is called each time the resulting importer needs
to resolve an import path. In this mode the importer can only be
invoked with canonical import paths (not relative or absolute ones);
it is assumed that the translation to canonical import paths is being
done by the client of the importer.
A lookup function must be provided for correct module-aware operation.
Deprecated: If lookup is nil, for backwards-compatibility, the importer
will attempt to resolve imports in the $GOPATH workspace.
Go input arguments: (fset *go/token.FileSet, compiler string, lookup Lookup)
Go returns: go/types.Importer
Joker input arguments: [^go.std.go.token/*FileSet fset, ^String compiler, ^Lookup lookup]
Joker returns: ^go.std.go.types/Importer
Types
-
*Lookup
Concrete Type v1.0A Lookup function returns a reader to access package data for
a given import path, or an error if no matching package is found.
-
Lookup
Concrete Type v1.0A Lookup function returns a reader to access package data for
a given import path, or an error if no matching package is found.
-
arrayOfLookup
Concrete Type v1.0A Lookup function returns a reader to access package data for
a given import path, or an error if no matching package is found.