()
| 32 | } |
| 33 | |
| 34 | func (s *structData) finished() bool { |
| 35 | return s.ownIdx >= s.numField && // no own fields left to visit |
| 36 | s.anonIdx >= s.numField && // no embedded fields to visit |
| 37 | s.curChild == nil // no child in process of visiting |
| 38 | } |
| 39 | |
| 40 | func (s *structData) structField(c *Cache, parentEmbed *structData, name string) *structField { |
| 41 | if s.fields == nil { |
no outgoing calls
no test coverage detected