type go/ast.InterfaceType
26 uses
go/ast (current package)
ast.go#L458: InterfaceType struct {
ast.go#L512: func (x *InterfaceType) Pos() token.Pos { return x.Interface }
ast.go#L546: func (x *InterfaceType) End() token.Pos { return x.Methods.End() }
ast.go#L574: func (*InterfaceType) exprNode() {}
filter.go#L170: case *InterfaceType:
walk.go#L182: case *InterfaceType:
go/doc
exports.go#L83: func removeAnonymousField(name string, ityp *ast.InterfaceType) {
exports.go#L110: func (r *reader) filterFieldList(parent *namedType, fields *ast.FieldList, ityp *ast.InterfaceType) (removedFields bool) {
exports.go#L202: case *ast.InterfaceType:
filter.go#L44: case *ast.InterfaceType:
reader.go#L198: fixmap map[string][]*ast.InterfaceType
reader.go#L257: func (r *reader) remember(predecl string, typ *ast.InterfaceType) {
reader.go#L259: r.fixmap = make(map[string][]*ast.InterfaceType)
reader.go#L357: case *ast.InterfaceType:
go/parser
parser.go#L1128: func (p *parser) parseInterfaceType() *ast.InterfaceType {
parser.go#L1172: return &ast.InterfaceType{
parser.go#L2713: case *ast.ArrayType, *ast.StructType, *ast.FuncType, *ast.InterfaceType, *ast.MapType, *ast.ChanType:
resolver.go#L298: case *ast.InterfaceType:
go/printer
nodes.go#L408: case *ast.ArrayType, *ast.StructType, *ast.FuncType, *ast.InterfaceType, *ast.MapType, *ast.ChanType:
nodes.go#L1011: case *ast.InterfaceType:
go/types
decl.go#L663: x = &ast.InterfaceType{Methods: &ast.FieldList{List: []*ast.Field{{Type: x}}}}
expr.go#L498: *ast.InterfaceType,
expr.go#L1636: *ast.InterfaceType, *ast.MapType, *ast.ChanType:
exprstring.go#L142: case *ast.InterfaceType:
interface.go#L158: func (check *Checker) interfaceType(ityp *Interface, iface *ast.InterfaceType, def *Named) {
typexpr.go#L329: case *ast.InterfaceType: