2014-03-25 16:26:38 -06:00
|
|
|
// Copyright 2014 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2015-10-09 14:35:07 -06:00
|
|
|
// +build go1.5
|
|
|
|
|
2014-03-25 16:26:38 -06:00
|
|
|
// This file implements access to gc-generated export data.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2014-11-09 14:50:40 -07:00
|
|
|
"golang.org/x/tools/go/gcimporter"
|
2014-03-25 16:26:38 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2014-03-26 15:47:52 -06:00
|
|
|
register("gc", gcimporter.Import)
|
2014-03-25 16:26:38 -06:00
|
|
|
}
|