MCPcopy Index your code
hub / github.com/go-python/gopy / Interface

Struct Interface

bind/types.go:149–157  ·  view source on GitHub ↗

Interface Interface collects information about a go interface.

Source from the content-addressed store, hash-verified

147
148// Interface collects information about a go interface.
149type Interface struct {
150 pkg *Package
151 sym *symbol
152 obj *types.TypeName
153
154 id string
155 doc string
156 meths []*Func
157}
158
159func newInterface(p *Package, obj *types.TypeName) (*Interface, error) {
160 sym := p.syms.symtype(obj.Type())

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected