| 598 | } |
| 599 | |
| 600 | type StructFieldCode struct { |
| 601 | typ *runtime.Type |
| 602 | key string |
| 603 | tag *runtime.StructTag |
| 604 | value Code |
| 605 | offset uintptr |
| 606 | isAnonymous bool |
| 607 | isTaggedKey bool |
| 608 | isNilableType bool |
| 609 | isNilCheck bool |
| 610 | isAddrForMarshaler bool |
| 611 | isNextOpPtrType bool |
| 612 | isMarshalerContext bool |
| 613 | } |
| 614 | |
| 615 | func (c *StructFieldCode) getStruct() *StructCode { |
| 616 | value := c.value |
nothing calls this directly
no outgoing calls
no test coverage detected