mirror of
https://github.com/golang/go
synced 2024-11-05 11:56:12 -07:00
adaaa07486
Per https://groups.google.com/forum/#!topic/golang-announce/qu_rAphYdxY this change deletes the packages go/exact go/gccgoimporter go/gcimporter go/importer go/types cmd/vet from the x/tools repo and any files depending on those packages building against Go 1.4. x/tools packages depending on any of these libraries must use the respective versions from the std lib or use vendored versions if building against 1.4. Remaining packages may or may not build against Go 1.4 anymore and will not be supported against 1.4. Change-Id: I1c655fc30aee49b6c7326ebd4eb1bb0836ac97e0 Reviewed-on: https://go-review.googlesource.com/20810 Reviewed-by: Alan Donovan <adonovan@google.com>
16 lines
331 B
Go
16 lines
331 B
Go
// 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.
|
|
|
|
// +build go1.5
|
|
|
|
// This file implements access to gc-generated export data.
|
|
|
|
package main
|
|
|
|
import "go/importer"
|
|
|
|
func init() {
|
|
register("gc", importer.For("gc", nil))
|
|
}
|