type go/ast.StructType
21 uses
go/ast (current package)
ast.go#L441: StructType struct {
ast.go#L505: func (x *StructType) Pos() token.Pos { return x.Struct }
ast.go#L539: func (x *StructType) End() token.Pos { return x.Fields.End() }
ast.go#L572: func (*StructType) exprNode() {}
filter.go#L161: case *StructType:
walk.go#L168: case *StructType:
go/doc
exports.go#L194: case *ast.StructType:
filter.go#L40: case *ast.StructType:
reader.go#L354: case *ast.StructType:
go/parser
parser.go#L671: func (p *parser) parseStructType() *ast.StructType {
parser.go#L687: return &ast.StructType{
parser.go#L1710: case *ast.ArrayType, *ast.StructType, *ast.MapType:
parser.go#L2713: case *ast.ArrayType, *ast.StructType, *ast.FuncType, *ast.InterfaceType, *ast.MapType, *ast.ChanType:
resolver.go#L268: case *ast.StructType:
go/printer
nodes.go#L408: case *ast.ArrayType, *ast.StructType, *ast.FuncType, *ast.InterfaceType, *ast.MapType, *ast.ChanType:
nodes.go#L1003: case *ast.StructType:
go/types
expr.go#L496: *ast.StructType,
expr.go#L1635: case *ast.ArrayType, *ast.StructType, *ast.FuncType,
exprstring.go#L133: case *ast.StructType:
struct.go#L67: func (check *Checker) structType(styp *Struct, e *ast.StructType) {
typexpr.go#L310: case *ast.StructType: