type go/ast.StructType
21 uses
go/ast (current package)
ast.go#L451: StructType struct {
ast.go#L515: func (x *StructType) Pos() token.Pos { return x.Struct }
ast.go#L549: func (x *StructType) End() token.Pos { return x.Fields.End() }
ast.go#L581: func (*StructType) exprNode() {}
filter.go#L158: case *StructType:
walk.go#L144: case *StructType:
go/doc
exports.go#L189: case *ast.StructType:
filter.go#L40: case *ast.StructType:
reader.go#L350: case *ast.StructType:
go/parser
parser.go#L739: func (p *parser) parseStructType() *ast.StructType {
parser.go#L755: return &ast.StructType{
parser.go#L1756: case *ast.ArrayType, *ast.StructType, *ast.MapType:
parser.go#L2721: case *ast.ArrayType, *ast.StructType, *ast.FuncType, *ast.InterfaceType, *ast.MapType, *ast.ChanType:
resolver.go#L272: case *ast.StructType:
go/printer
nodes.go#L423: case *ast.ArrayType, *ast.StructType, *ast.FuncType, *ast.InterfaceType, *ast.MapType, *ast.ChanType:
nodes.go#L1050: case *ast.StructType:
go/types
expr.go#L247: *ast.StructType,
expr.go#L1140: case *ast.ArrayType, *ast.StructType, *ast.FuncType,
exprstring.go#L135: case *ast.StructType:
struct.go#L68: func (check *Checker) structType(styp *Struct, e *ast.StructType) {
typexpr.go#L330: case *ast.StructType: