bytesP implements the BytesP interface.
| 111 | |
| 112 | // bytesP implements the BytesP interface. |
| 113 | type bytesP struct { |
| 114 | P |
| 115 | done func(string) |
| 116 | } |
| 117 | |
| 118 | func (p *bytesP) Field(name string) P { |
| 119 | p.done(name) |
nothing calls this directly
no outgoing calls
no test coverage detected