type go/ast.StructType
21 uses
go/ast (current package)
ast.go#L455: StructType struct {
ast.go#L519: func (x *StructType) Pos() token.Pos { return x.Struct }
ast.go#L553: func (x *StructType) End() token.Pos { return x.Fields.End() }
ast.go#L585: func (*StructType) exprNode() {}
filter.go#L161: 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#L753: func (p *parser) parseStructType() *ast.StructType {
parser.go#L769: return &ast.StructType{
parser.go#L1786: case *ast.ArrayType, *ast.StructType, *ast.MapType:
parser.go#L2749: 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#L277: *ast.StructType,
expr.go#L1165: 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#L328: case *ast.StructType: