commit | 4d45c8502056aca783c84cb9f5824c3301490945 | [log] [tgz] |
---|---|---|
author | Alan Donovan <adonovan@google.com> | Mon Dec 29 15:47:06 2014 -0500 |
committer | Alan Donovan <adonovan@google.com> | Wed Jan 21 18:49:27 2015 +0000 |
tree | ab0751a0980a24f35d828e247972e84a6b15c864 | |
parent | d702aaaabeb8e868ad03c3514a593da7673453d1 [diff] [blame] |
go/types: expose IsInterface predicate, eliminating 6 copies Change-Id: I3704d7bd7a11f691c66556c1b77ef79a503d2fe9 Reviewed-on: https://go-review.googlesource.com/2173 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
diff --git a/refactor/satisfy/find.go b/refactor/satisfy/find.go index 9770a02..20fb288 100644 --- a/refactor/satisfy/find.go +++ b/refactor/satisfy/find.go
@@ -701,7 +701,4 @@ func unparen(e ast.Expr) ast.Expr { return astutil.Unparen(e) } -func isInterface(T types.Type) bool { - _, ok := T.Underlying().(*types.Interface) - return ok -} +func isInterface(T types.Type) bool { return types.IsInterface(T) }