3b5918c757
Make predicates.go match the corresponding and reviewed go/types version. The remaining diffs are due to the difference in the implementations of the type conversion methods/functions: $ diff $GOROOT/src/cmd/compile/internal/types2/predicates.go $GOROOT/src/go/types/predicates.go 7c7 < package types2 --- > package types 9a10 > "go/token" 32c33 < switch t := optype(typ.Under()).(type) { --- > switch t := optype(typ).(type) { 63c64 < // set up. Must not call Basic()! --- > // set up. Must not call asBasic()! 79c80 < t := typ.Basic() --- > t := asBasic(typ) 85c86 < return typ.Interface() != nil --- > return asInterface(typ) != nil 110c111 < if t := T.TypeParam(); t != nil && optype(t) == theTop { --- > if t := asTypeParam(T); t != nil && optype(t) == theTop { 114c115 < switch t := optype(T.Under()).(type) { --- > switch t := optype(T).(type) { 143c144 < switch t := optype(typ.Under()).(type) { --- > switch t := optype(typ).(type) { 300,301c301,302 < check.completeInterface(nopos, x) < check.completeInterface(nopos, y) --- > check.completeInterface(token.NoPos, x) > check.completeInterface(token.NoPos, y) Change-Id: I174d8a8a22fbd8814ede25002cb2705588912329 Reviewed-on: https://go-review.googlesource.com/c/go/+/278474 Trust: Robert Griesemer <gri@golang.org> Reviewed-by: Robert Findley <rfindley@google.com> |
||
---|---|---|
.github | ||
api | ||
doc | ||
lib/time | ||
misc | ||
src | ||
test | ||
.gitattributes | ||
.gitignore | ||
AUTHORS | ||
CONTRIBUTING.md | ||
CONTRIBUTORS | ||
favicon.ico | ||
LICENSE | ||
PATENTS | ||
README.md | ||
robots.txt | ||
SECURITY.md |
The Go Programming Language
Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.
Gopher image by Renee French, licensed under Creative Commons 3.0 Attributions license.
Our canonical Git repository is located at https://go.googlesource.com/go. There is a mirror of the repository at https://github.com/golang/go.
Unless otherwise noted, the Go source files are distributed under the BSD-style license found in the LICENSE file.
Download and Install
Binary Distributions
Official binary distributions are available at https://golang.org/dl/.
After downloading a binary release, visit https://golang.org/doc/install or load doc/install.html in your web browser for installation instructions.
Install From Source
If a binary distribution is not available for your combination of operating system and architecture, visit https://golang.org/doc/install/source or load doc/install-source.html in your web browser for source installation instructions.
Contributing
Go is the work of thousands of contributors. We appreciate your help!
To contribute, please read the contribution guidelines: https://golang.org/doc/contribute.html
Note that the Go project uses the issue tracker for bug reports and proposals only. See https://golang.org/wiki/Questions for a list of places to ask questions about the Go language.