Change-Id: If498d1fc6e8c0c4e8cf7ed38c4997adf05e003a6
Reviewed-on: https://go-review.googlesource.com/105043
Run-TryBot: Matthew Dempsky <mdempsky@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Dave Cheney <dave@cheney.net>
)
type Sig struct {
- name string
- pkg *types.Pkg
- isym *types.Sym
- tsym *types.Sym
- type_ *types.Type
- mtype *types.Type
- offset int32
+ name string
+ pkg *types.Pkg
+ isym *types.Sym
+ tsym *types.Sym
+ type_ *types.Type
+ mtype *types.Type
}
// siglt sorts method signatures by name with exported methods first,
}
sig.mtype = f.Type
- sig.offset = 0
sig.type_ = methodfunc(f.Type, nil)
if n := len(methods); n > 0 {