| 371 | } |
| 372 | |
| 373 | type StructCode struct { |
| 374 | typ *runtime.Type |
| 375 | fields []*StructFieldCode |
| 376 | isPtr bool |
| 377 | disableIndirectConversion bool |
| 378 | isIndirect bool |
| 379 | isRecursive bool |
| 380 | } |
| 381 | |
| 382 | func (c *StructCode) Kind() CodeKind { |
| 383 | return CodeKindStruct |
nothing calls this directly
no outgoing calls
no test coverage detected