Skip to content

Commit 20cd540

Browse files
adonovangopherbot
authored andcommitted
gopls/internal/golang: check for nil ReceiverNamed
This is a defensive check against a nil result from ReceiverNamed; I'm unable to reproduce the panic though. It would have to be hovering over a reference to a method whose receiver is not a named type (or alias or pointer to named), such as a slice type, an undeclared type, or somesuch. Updates golang/go#70969 Change-Id: I1cc2bc3d311a88304a2af525d38c1143f4c513a1 Reviewed-on: https://go-review.googlesource.com/c/tools/+/638597 Auto-Submit: Alan Donovan <[email protected]> Reviewed-by: Robert Findley <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
1 parent 02033b2 commit 20cd540

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

gopls/internal/golang/hover.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1349,7 +1349,7 @@ func StdSymbolOf(obj types.Object) *stdlib.Symbol {
13491349
// Handle Method.
13501350
if fn, _ := obj.(*types.Func); fn != nil {
13511351
isPtr, named := typesinternal.ReceiverNamed(fn.Signature().Recv())
1352-
if isPackageLevel(named.Obj()) {
1352+
if named != nil && isPackageLevel(named.Obj()) {
13531353
for _, s := range symbols {
13541354
if s.Kind != stdlib.Method {
13551355
continue

internal/typesinternal/recv.go

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ import (
1111
// ReceiverNamed returns the named type (if any) associated with the
1212
// type of recv, which may be of the form N or *N, or aliases thereof.
1313
// It also reports whether a Pointer was present.
14+
//
15+
// The named result may be nil in ill-typed code.
1416
func ReceiverNamed(recv *types.Var) (isPtr bool, named *types.Named) {
1517
t := recv.Type()
1618
if ptr, ok := types.Unalias(t).(*types.Pointer); ok {

0 commit comments

Comments
 (0)