mirror of
https://github.com/golang/go
synced 2024-11-05 18:46:11 -07:00
207d3de1fa
Updates golang/go#35718 Change-Id: I10bfd5421cd44bb58b8bcaa6e9205040c25f51be Reviewed-on: https://go-review.googlesource.com/c/tools/+/208257 Run-TryBot: Rebecca Stambler <rstambler@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Heschi Kreinick <heschi@google.com>
17 lines
359 B
Go
17 lines
359 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.
|
|
|
|
// This file implements access to gc-generated export data.
|
|
|
|
package main
|
|
|
|
import (
|
|
"go/importer"
|
|
"go/token"
|
|
)
|
|
|
|
func init() {
|
|
register("gc", importer.ForCompiler(token.NewFileSet(), "gc", nil))
|
|
}
|