Source file src/go/types/object.go

     1  // Code generated by "go test -run=Generate -write=all"; DO NOT EDIT.
     2  // Source: ../../cmd/compile/internal/types2/object.go
     3  
     4  // Copyright 2013 The Go Authors. All rights reserved.
     5  // Use of this source code is governed by a BSD-style
     6  // license that can be found in the LICENSE file.
     7  
     8  package types
     9  
    10  import (
    11  	"bytes"
    12  	"fmt"
    13  	"go/constant"
    14  	"go/token"
    15  	"strings"
    16  	"unicode"
    17  	"unicode/utf8"
    18  )
    19  
    20  // An Object is a named language entity.
    21  // An Object may be a constant ([Const]), type name ([TypeName]),
    22  // variable or struct field ([Var]), function or method ([Func]),
    23  // imported package ([PkgName]), label ([Label]),
    24  // built-in function ([Builtin]),
    25  // or the predeclared identifier 'nil' ([Nil]).
    26  //
    27  // The environment, which is structured as a tree of Scopes,
    28  // maps each name to the unique Object that it denotes.
    29  type Object interface {
    30  	Parent() *Scope // scope in which this object is declared; nil for methods and struct fields
    31  	Pos() token.Pos // position of object identifier in declaration
    32  	Pkg() *Package  // package to which this object belongs; nil for labels and objects in the Universe scope
    33  	Name() string   // package local object name
    34  	Type() Type     // object type
    35  	Exported() bool // reports whether the name starts with a capital letter
    36  	Id() string     // object name if exported, qualified name if not exported (see func Id)
    37  
    38  	// String returns a human-readable string of the object.
    39  	// Use [ObjectString] to control how package names are formatted in the string.
    40  	String() string
    41  
    42  	// order reflects a package-level object's source order: if object
    43  	// a is before object b in the source, then a.order() < b.order().
    44  	// order returns a value > 0 for package-level objects; it returns
    45  	// 0 for all other objects (including objects in file scopes).
    46  	order() uint32
    47  
    48  	// color returns the object's color.
    49  	color() color
    50  
    51  	// setType sets the type of the object.
    52  	setType(Type)
    53  
    54  	// setOrder sets the order number of the object. It must be > 0.
    55  	setOrder(uint32)
    56  
    57  	// setColor sets the object's color. It must not be white.
    58  	setColor(color color)
    59  
    60  	// setParent sets the parent scope of the object.
    61  	setParent(*Scope)
    62  
    63  	// sameId reports whether obj.Id() and Id(pkg, name) are the same.
    64  	// If foldCase is true, names are considered equal if they are equal with case folding
    65  	// and their packages are ignored (e.g., pkg1.m, pkg1.M, pkg2.m, and pkg2.M are all equal).
    66  	sameId(pkg *Package, name string, foldCase bool) bool
    67  
    68  	// scopePos returns the start position of the scope of this Object
    69  	scopePos() token.Pos
    70  
    71  	// setScopePos sets the start position of the scope for this Object.
    72  	setScopePos(pos token.Pos)
    73  }
    74  
    75  func isExported(name string) bool {
    76  	ch, _ := utf8.DecodeRuneInString(name)
    77  	return unicode.IsUpper(ch)
    78  }
    79  
    80  // Id returns name if it is exported, otherwise it
    81  // returns the name qualified with the package path.
    82  func Id(pkg *Package, name string) string {
    83  	if isExported(name) {
    84  		return name
    85  	}
    86  	// unexported names need the package path for differentiation
    87  	// (if there's no package, make sure we don't start with '.'
    88  	// as that may change the order of methods between a setup
    89  	// inside a package and outside a package - which breaks some
    90  	// tests)
    91  	path := "_"
    92  	// pkg is nil for objects in Universe scope and possibly types
    93  	// introduced via Eval (see also comment in object.sameId)
    94  	if pkg != nil && pkg.path != "" {
    95  		path = pkg.path
    96  	}
    97  	return path + "." + name
    98  }
    99  
   100  // An object implements the common parts of an Object.
   101  type object struct {
   102  	parent    *Scope
   103  	pos       token.Pos
   104  	pkg       *Package
   105  	name      string
   106  	typ       Type
   107  	order_    uint32
   108  	color_    color
   109  	scopePos_ token.Pos
   110  }
   111  
   112  // color encodes the color of an object (see Checker.objDecl for details).
   113  type color uint32
   114  
   115  // An object may be painted in one of three colors.
   116  // Color values other than white or black are considered grey.
   117  const (
   118  	white color = iota
   119  	black
   120  	grey // must be > white and black
   121  )
   122  
   123  func (c color) String() string {
   124  	switch c {
   125  	case white:
   126  		return "white"
   127  	case black:
   128  		return "black"
   129  	default:
   130  		return "grey"
   131  	}
   132  }
   133  
   134  // colorFor returns the (initial) color for an object depending on
   135  // whether its type t is known or not.
   136  func colorFor(t Type) color {
   137  	if t != nil {
   138  		return black
   139  	}
   140  	return white
   141  }
   142  
   143  // Parent returns the scope in which the object is declared.
   144  // The result is nil for methods and struct fields.
   145  func (obj *object) Parent() *Scope { return obj.parent }
   146  
   147  // Pos returns the declaration position of the object's identifier.
   148  func (obj *object) Pos() token.Pos { return obj.pos }
   149  
   150  // Pkg returns the package to which the object belongs.
   151  // The result is nil for labels and objects in the Universe scope.
   152  func (obj *object) Pkg() *Package { return obj.pkg }
   153  
   154  // Name returns the object's (package-local, unqualified) name.
   155  func (obj *object) Name() string { return obj.name }
   156  
   157  // Type returns the object's type.
   158  func (obj *object) Type() Type { return obj.typ }
   159  
   160  // Exported reports whether the object is exported (starts with a capital letter).
   161  // It doesn't take into account whether the object is in a local (function) scope
   162  // or not.
   163  func (obj *object) Exported() bool { return isExported(obj.name) }
   164  
   165  // Id is a wrapper for Id(obj.Pkg(), obj.Name()).
   166  func (obj *object) Id() string { return Id(obj.pkg, obj.name) }
   167  
   168  func (obj *object) String() string      { panic("abstract") }
   169  func (obj *object) order() uint32       { return obj.order_ }
   170  func (obj *object) color() color        { return obj.color_ }
   171  func (obj *object) scopePos() token.Pos { return obj.scopePos_ }
   172  
   173  func (obj *object) setParent(parent *Scope)   { obj.parent = parent }
   174  func (obj *object) setType(typ Type)          { obj.typ = typ }
   175  func (obj *object) setOrder(order uint32)     { assert(order > 0); obj.order_ = order }
   176  func (obj *object) setColor(color color)      { assert(color != white); obj.color_ = color }
   177  func (obj *object) setScopePos(pos token.Pos) { obj.scopePos_ = pos }
   178  
   179  func (obj *object) sameId(pkg *Package, name string, foldCase bool) bool {
   180  	// If we don't care about capitalization, we also ignore packages.
   181  	if foldCase && strings.EqualFold(obj.name, name) {
   182  		return true
   183  	}
   184  	// spec:
   185  	// "Two identifiers are different if they are spelled differently,
   186  	// or if they appear in different packages and are not exported.
   187  	// Otherwise, they are the same."
   188  	if obj.name != name {
   189  		return false
   190  	}
   191  	// obj.Name == name
   192  	if obj.Exported() {
   193  		return true
   194  	}
   195  	// not exported, so packages must be the same
   196  	return samePkg(obj.pkg, pkg)
   197  }
   198  
   199  // cmp reports whether object a is ordered before object b.
   200  // cmp returns:
   201  //
   202  //	-1 if a is before b
   203  //	 0 if a is equivalent to b
   204  //	+1 if a is behind b
   205  //
   206  // Objects are ordered nil before non-nil, exported before
   207  // non-exported, then by name, and finally (for non-exported
   208  // functions) by package path.
   209  func (a *object) cmp(b *object) int {
   210  	if a == b {
   211  		return 0
   212  	}
   213  
   214  	// Nil before non-nil.
   215  	if a == nil {
   216  		return -1
   217  	}
   218  	if b == nil {
   219  		return +1
   220  	}
   221  
   222  	// Exported functions before non-exported.
   223  	ea := isExported(a.name)
   224  	eb := isExported(b.name)
   225  	if ea != eb {
   226  		if ea {
   227  			return -1
   228  		}
   229  		return +1
   230  	}
   231  
   232  	// Order by name and then (for non-exported names) by package.
   233  	if a.name != b.name {
   234  		return strings.Compare(a.name, b.name)
   235  	}
   236  	if !ea {
   237  		return strings.Compare(a.pkg.path, b.pkg.path)
   238  	}
   239  
   240  	return 0
   241  }
   242  
   243  // A PkgName represents an imported Go package.
   244  // PkgNames don't have a type.
   245  type PkgName struct {
   246  	object
   247  	imported *Package
   248  }
   249  
   250  // NewPkgName returns a new PkgName object representing an imported package.
   251  // The remaining arguments set the attributes found with all Objects.
   252  func NewPkgName(pos token.Pos, pkg *Package, name string, imported *Package) *PkgName {
   253  	return &PkgName{object{nil, pos, pkg, name, Typ[Invalid], 0, black, nopos}, imported}
   254  }
   255  
   256  // Imported returns the package that was imported.
   257  // It is distinct from Pkg(), which is the package containing the import statement.
   258  func (obj *PkgName) Imported() *Package { return obj.imported }
   259  
   260  // A Const represents a declared constant.
   261  type Const struct {
   262  	object
   263  	val constant.Value
   264  }
   265  
   266  // NewConst returns a new constant with value val.
   267  // The remaining arguments set the attributes found with all Objects.
   268  func NewConst(pos token.Pos, pkg *Package, name string, typ Type, val constant.Value) *Const {
   269  	return &Const{object{nil, pos, pkg, name, typ, 0, colorFor(typ), nopos}, val}
   270  }
   271  
   272  // Val returns the constant's value.
   273  func (obj *Const) Val() constant.Value { return obj.val }
   274  
   275  func (*Const) isDependency() {} // a constant may be a dependency of an initialization expression
   276  
   277  // A TypeName is an [Object] that represents a type with a name:
   278  // a defined type ([Named]),
   279  // an alias type ([Alias]),
   280  // a type parameter ([TypeParam]),
   281  // or a predeclared type such as int or error.
   282  type TypeName struct {
   283  	object
   284  }
   285  
   286  // NewTypeName returns a new type name denoting the given typ.
   287  // The remaining arguments set the attributes found with all Objects.
   288  //
   289  // The typ argument may be a defined (Named) type or an alias type.
   290  // It may also be nil such that the returned TypeName can be used as
   291  // argument for NewNamed, which will set the TypeName's type as a side-
   292  // effect.
   293  func NewTypeName(pos token.Pos, pkg *Package, name string, typ Type) *TypeName {
   294  	return &TypeName{object{nil, pos, pkg, name, typ, 0, colorFor(typ), nopos}}
   295  }
   296  
   297  // NewTypeNameLazy returns a new defined type like NewTypeName, but it
   298  // lazily calls resolve to finish constructing the Named object.
   299  func _NewTypeNameLazy(pos token.Pos, pkg *Package, name string, load func(named *Named) (tparams []*TypeParam, underlying Type, methods []*Func)) *TypeName {
   300  	obj := NewTypeName(pos, pkg, name, nil)
   301  	NewNamed(obj, nil, nil).loader = load
   302  	return obj
   303  }
   304  
   305  // IsAlias reports whether obj is an alias name for a type.
   306  func (obj *TypeName) IsAlias() bool {
   307  	switch t := obj.typ.(type) {
   308  	case nil:
   309  		return false
   310  	// case *Alias:
   311  	//	handled by default case
   312  	case *Basic:
   313  		// unsafe.Pointer is not an alias.
   314  		if obj.pkg == Unsafe {
   315  			return false
   316  		}
   317  		// Any user-defined type name for a basic type is an alias for a
   318  		// basic type (because basic types are pre-declared in the Universe
   319  		// scope, outside any package scope), and so is any type name with
   320  		// a different name than the name of the basic type it refers to.
   321  		// Additionally, we need to look for "byte" and "rune" because they
   322  		// are aliases but have the same names (for better error messages).
   323  		return obj.pkg != nil || t.name != obj.name || t == universeByte || t == universeRune
   324  	case *Named:
   325  		return obj != t.obj
   326  	case *TypeParam:
   327  		return obj != t.obj
   328  	default:
   329  		return true
   330  	}
   331  }
   332  
   333  // A Variable represents a declared variable (including function parameters and results, and struct fields).
   334  type Var struct {
   335  	object
   336  	origin   *Var // if non-nil, the Var from which this one was instantiated
   337  	embedded bool // if set, the variable is an embedded struct field, and name is the type name
   338  	isField  bool // var is struct field
   339  	isParam  bool // var is a param, for backport of 'used' check to go1.24 (go.dev/issue/72826)
   340  }
   341  
   342  // NewVar returns a new variable.
   343  // The arguments set the attributes found with all Objects.
   344  func NewVar(pos token.Pos, pkg *Package, name string, typ Type) *Var {
   345  	return &Var{object: object{nil, pos, pkg, name, typ, 0, colorFor(typ), nopos}}
   346  }
   347  
   348  // NewParam returns a new variable representing a function parameter.
   349  func NewParam(pos token.Pos, pkg *Package, name string, typ Type) *Var {
   350  	return &Var{object: object{nil, pos, pkg, name, typ, 0, colorFor(typ), nopos}, isParam: true}
   351  }
   352  
   353  // NewField returns a new variable representing a struct field.
   354  // For embedded fields, the name is the unqualified type name
   355  // under which the field is accessible.
   356  func NewField(pos token.Pos, pkg *Package, name string, typ Type, embedded bool) *Var {
   357  	return &Var{object: object{nil, pos, pkg, name, typ, 0, colorFor(typ), nopos}, embedded: embedded, isField: true}
   358  }
   359  
   360  // Anonymous reports whether the variable is an embedded field.
   361  // Same as Embedded; only present for backward-compatibility.
   362  func (obj *Var) Anonymous() bool { return obj.embedded }
   363  
   364  // Embedded reports whether the variable is an embedded field.
   365  func (obj *Var) Embedded() bool { return obj.embedded }
   366  
   367  // IsField reports whether the variable is a struct field.
   368  func (obj *Var) IsField() bool { return obj.isField }
   369  
   370  // Origin returns the canonical Var for its receiver, i.e. the Var object
   371  // recorded in Info.Defs.
   372  //
   373  // For synthetic Vars created during instantiation (such as struct fields or
   374  // function parameters that depend on type arguments), this will be the
   375  // corresponding Var on the generic (uninstantiated) type. For all other Vars
   376  // Origin returns the receiver.
   377  func (obj *Var) Origin() *Var {
   378  	if obj.origin != nil {
   379  		return obj.origin
   380  	}
   381  	return obj
   382  }
   383  
   384  func (*Var) isDependency() {} // a variable may be a dependency of an initialization expression
   385  
   386  // A Func represents a declared function, concrete method, or abstract
   387  // (interface) method. Its Type() is always a *Signature.
   388  // An abstract method may belong to many interfaces due to embedding.
   389  type Func struct {
   390  	object
   391  	hasPtrRecv_ bool  // only valid for methods that don't have a type yet; use hasPtrRecv() to read
   392  	origin      *Func // if non-nil, the Func from which this one was instantiated
   393  }
   394  
   395  // NewFunc returns a new function with the given signature, representing
   396  // the function's type.
   397  func NewFunc(pos token.Pos, pkg *Package, name string, sig *Signature) *Func {
   398  	var typ Type
   399  	if sig != nil {
   400  		typ = sig
   401  	} else {
   402  		// Don't store a (typed) nil *Signature.
   403  		// We can't simply replace it with new(Signature) either,
   404  		// as this would violate object.{Type,color} invariants.
   405  		// TODO(adonovan): propose to disallow NewFunc with nil *Signature.
   406  	}
   407  	return &Func{object{nil, pos, pkg, name, typ, 0, colorFor(typ), nopos}, false, nil}
   408  }
   409  
   410  // Signature returns the signature (type) of the function or method.
   411  func (obj *Func) Signature() *Signature {
   412  	if obj.typ != nil {
   413  		return obj.typ.(*Signature) // normal case
   414  	}
   415  	// No signature: Signature was called either:
   416  	// - within go/types, before a FuncDecl's initially
   417  	//   nil Func.Type was lazily populated, indicating
   418  	//   a types bug; or
   419  	// - by a client after NewFunc(..., nil),
   420  	//   which is arguably a client bug, but we need a
   421  	//   proposal to tighten NewFunc's precondition.
   422  	// For now, return a trivial signature.
   423  	return new(Signature)
   424  }
   425  
   426  // FullName returns the package- or receiver-type-qualified name of
   427  // function or method obj.
   428  func (obj *Func) FullName() string {
   429  	var buf bytes.Buffer
   430  	writeFuncName(&buf, obj, nil)
   431  	return buf.String()
   432  }
   433  
   434  // Scope returns the scope of the function's body block.
   435  // The result is nil for imported or instantiated functions and methods
   436  // (but there is also no mechanism to get to an instantiated function).
   437  func (obj *Func) Scope() *Scope { return obj.typ.(*Signature).scope }
   438  
   439  // Origin returns the canonical Func for its receiver, i.e. the Func object
   440  // recorded in Info.Defs.
   441  //
   442  // For synthetic functions created during instantiation (such as methods on an
   443  // instantiated Named type or interface methods that depend on type arguments),
   444  // this will be the corresponding Func on the generic (uninstantiated) type.
   445  // For all other Funcs Origin returns the receiver.
   446  func (obj *Func) Origin() *Func {
   447  	if obj.origin != nil {
   448  		return obj.origin
   449  	}
   450  	return obj
   451  }
   452  
   453  // Pkg returns the package to which the function belongs.
   454  //
   455  // The result is nil for methods of types in the Universe scope,
   456  // like method Error of the error built-in interface type.
   457  func (obj *Func) Pkg() *Package { return obj.object.Pkg() }
   458  
   459  // hasPtrRecv reports whether the receiver is of the form *T for the given method obj.
   460  func (obj *Func) hasPtrRecv() bool {
   461  	// If a method's receiver type is set, use that as the source of truth for the receiver.
   462  	// Caution: Checker.funcDecl (decl.go) marks a function by setting its type to an empty
   463  	// signature. We may reach here before the signature is fully set up: we must explicitly
   464  	// check if the receiver is set (we cannot just look for non-nil obj.typ).
   465  	if sig, _ := obj.typ.(*Signature); sig != nil && sig.recv != nil {
   466  		_, isPtr := deref(sig.recv.typ)
   467  		return isPtr
   468  	}
   469  
   470  	// If a method's type is not set it may be a method/function that is:
   471  	// 1) client-supplied (via NewFunc with no signature), or
   472  	// 2) internally created but not yet type-checked.
   473  	// For case 1) we can't do anything; the client must know what they are doing.
   474  	// For case 2) we can use the information gathered by the resolver.
   475  	return obj.hasPtrRecv_
   476  }
   477  
   478  func (*Func) isDependency() {} // a function may be a dependency of an initialization expression
   479  
   480  // A Label represents a declared label.
   481  // Labels don't have a type.
   482  type Label struct {
   483  	object
   484  	used bool // set if the label was used
   485  }
   486  
   487  // NewLabel returns a new label.
   488  func NewLabel(pos token.Pos, pkg *Package, name string) *Label {
   489  	return &Label{object{pos: pos, pkg: pkg, name: name, typ: Typ[Invalid], color_: black}, false}
   490  }
   491  
   492  // A Builtin represents a built-in function.
   493  // Builtins don't have a valid type.
   494  type Builtin struct {
   495  	object
   496  	id builtinId
   497  }
   498  
   499  func newBuiltin(id builtinId) *Builtin {
   500  	return &Builtin{object{name: predeclaredFuncs[id].name, typ: Typ[Invalid], color_: black}, id}
   501  }
   502  
   503  // Nil represents the predeclared value nil.
   504  type Nil struct {
   505  	object
   506  }
   507  
   508  func writeObject(buf *bytes.Buffer, obj Object, qf Qualifier) {
   509  	var tname *TypeName
   510  	typ := obj.Type()
   511  
   512  	switch obj := obj.(type) {
   513  	case *PkgName:
   514  		fmt.Fprintf(buf, "package %s", obj.Name())
   515  		if path := obj.imported.path; path != "" && path != obj.name {
   516  			fmt.Fprintf(buf, " (%q)", path)
   517  		}
   518  		return
   519  
   520  	case *Const:
   521  		buf.WriteString("const")
   522  
   523  	case *TypeName:
   524  		tname = obj
   525  		buf.WriteString("type")
   526  		if isTypeParam(typ) {
   527  			buf.WriteString(" parameter")
   528  		}
   529  
   530  	case *Var:
   531  		if obj.isField {
   532  			buf.WriteString("field")
   533  		} else {
   534  			buf.WriteString("var")
   535  		}
   536  
   537  	case *Func:
   538  		buf.WriteString("func ")
   539  		writeFuncName(buf, obj, qf)
   540  		if typ != nil {
   541  			WriteSignature(buf, typ.(*Signature), qf)
   542  		}
   543  		return
   544  
   545  	case *Label:
   546  		buf.WriteString("label")
   547  		typ = nil
   548  
   549  	case *Builtin:
   550  		buf.WriteString("builtin")
   551  		typ = nil
   552  
   553  	case *Nil:
   554  		buf.WriteString("nil")
   555  		return
   556  
   557  	default:
   558  		panic(fmt.Sprintf("writeObject(%T)", obj))
   559  	}
   560  
   561  	buf.WriteByte(' ')
   562  
   563  	// For package-level objects, qualify the name.
   564  	if obj.Pkg() != nil && obj.Pkg().scope.Lookup(obj.Name()) == obj {
   565  		buf.WriteString(packagePrefix(obj.Pkg(), qf))
   566  	}
   567  	buf.WriteString(obj.Name())
   568  
   569  	if typ == nil {
   570  		return
   571  	}
   572  
   573  	if tname != nil {
   574  		switch t := typ.(type) {
   575  		case *Basic:
   576  			// Don't print anything more for basic types since there's
   577  			// no more information.
   578  			return
   579  		case genericType:
   580  			if t.TypeParams().Len() > 0 {
   581  				newTypeWriter(buf, qf).tParamList(t.TypeParams().list())
   582  			}
   583  		}
   584  		if tname.IsAlias() {
   585  			buf.WriteString(" =")
   586  			if alias, ok := typ.(*Alias); ok { // materialized? (gotypesalias=1)
   587  				typ = alias.fromRHS
   588  			}
   589  		} else if t, _ := typ.(*TypeParam); t != nil {
   590  			typ = t.bound
   591  		} else {
   592  			// TODO(gri) should this be fromRHS for *Named?
   593  			// (See discussion in #66559.)
   594  			typ = under(typ)
   595  		}
   596  	}
   597  
   598  	// Special handling for any: because WriteType will format 'any' as 'any',
   599  	// resulting in the object string `type any = any` rather than `type any =
   600  	// interface{}`. To avoid this, swap in a different empty interface.
   601  	if obj.Name() == "any" && obj.Parent() == Universe {
   602  		assert(Identical(typ, &emptyInterface))
   603  		typ = &emptyInterface
   604  	}
   605  
   606  	buf.WriteByte(' ')
   607  	WriteType(buf, typ, qf)
   608  }
   609  
   610  func packagePrefix(pkg *Package, qf Qualifier) string {
   611  	if pkg == nil {
   612  		return ""
   613  	}
   614  	var s string
   615  	if qf != nil {
   616  		s = qf(pkg)
   617  	} else {
   618  		s = pkg.Path()
   619  	}
   620  	if s != "" {
   621  		s += "."
   622  	}
   623  	return s
   624  }
   625  
   626  // ObjectString returns the string form of obj.
   627  // The Qualifier controls the printing of
   628  // package-level objects, and may be nil.
   629  func ObjectString(obj Object, qf Qualifier) string {
   630  	var buf bytes.Buffer
   631  	writeObject(&buf, obj, qf)
   632  	return buf.String()
   633  }
   634  
   635  func (obj *PkgName) String() string  { return ObjectString(obj, nil) }
   636  func (obj *Const) String() string    { return ObjectString(obj, nil) }
   637  func (obj *TypeName) String() string { return ObjectString(obj, nil) }
   638  func (obj *Var) String() string      { return ObjectString(obj, nil) }
   639  func (obj *Func) String() string     { return ObjectString(obj, nil) }
   640  func (obj *Label) String() string    { return ObjectString(obj, nil) }
   641  func (obj *Builtin) String() string  { return ObjectString(obj, nil) }
   642  func (obj *Nil) String() string      { return ObjectString(obj, nil) }
   643  
   644  func writeFuncName(buf *bytes.Buffer, f *Func, qf Qualifier) {
   645  	if f.typ != nil {
   646  		sig := f.typ.(*Signature)
   647  		if recv := sig.Recv(); recv != nil {
   648  			buf.WriteByte('(')
   649  			if _, ok := recv.Type().(*Interface); ok {
   650  				// gcimporter creates abstract methods of
   651  				// named interfaces using the interface type
   652  				// (not the named type) as the receiver.
   653  				// Don't print it in full.
   654  				buf.WriteString("interface")
   655  			} else {
   656  				WriteType(buf, recv.Type(), qf)
   657  			}
   658  			buf.WriteByte(')')
   659  			buf.WriteByte('.')
   660  		} else if f.pkg != nil {
   661  			buf.WriteString(packagePrefix(f.pkg, qf))
   662  		}
   663  	}
   664  	buf.WriteString(f.name)
   665  }
   666  

View as plain text