(t reflect.Type)
| 365 | } |
| 366 | |
| 367 | func embeddedStructType(t reflect.Type) (reflect.Type, bool) { |
| 368 | for t.Kind() == reflect.Pointer { |
| 369 | t = t.Elem() |
| 370 | } |
| 371 | return t, t.Kind() == reflect.Struct |
| 372 | } |
| 373 | |
| 374 | type tableField struct { |
| 375 | header string |
no outgoing calls
no test coverage detected