mirror of
https://github.com/golang/go
synced 2024-11-05 18:56:10 -07:00
827133af57
Roll back my two recent changes. Stringer is now very slow again, but works in most use cases. My git foo is insufficient to do this as a revert, but it is a by-hand reversion of CLs https://go-review.googlesource.com/121884 https://go-review.googlesource.com/121995 See the issue for a long conversation about the general problem. Update golang/go#10249 Update golang/go#25650 Change-Id: I7b6ce352a4c7ebf0977883509e9d7189aaac1251 Reviewed-on: https://go-review.googlesource.com/122535 Run-TryBot: Rob Pike <r@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
17 lines
308 B
Go
17 lines
308 B
Go
// Copyright 2017 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.9
|
|
|
|
package main
|
|
|
|
import (
|
|
"go/importer"
|
|
"go/types"
|
|
)
|
|
|
|
func defaultImporter() types.Importer {
|
|
return importer.For("source", nil)
|
|
}
|