Standard librarygo/importer Index | Files

package importer

import "go/importer"

Package importer provides access to export data importers.

Index

Functions

func Default

func Default() types.Importer

Default returns an Importer for the compiler that built the running binary. If available, the result implements types.ImporterFrom.

func For

func For(compiler string, lookup Lookup) types.Importer

For 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).

If lookup is nil, the default package lookup mechanism for the given compiler is used.

BUG(issue13847): For does not support non-nil lookup functions.

Types

type Lookup

type Lookup func(path string) (io.ReadCloser, error)

A Lookup function returns a reader to access package data for a given import path, or an error if no matching package is found.

Bugs

For does not support non-nil lookup functions.

Source Files

importer.go

Version
v1.9.0-rc.2
Published
Aug 7, 2017
Platform
darwin/amd64
Imports
8 packages
Last checked
13 seconds ago

Tools for package owners.