intP implements the IntP interface.
| 891 | |
| 892 | // intP implements the IntP interface. |
| 893 | type intP struct { |
| 894 | P |
| 895 | done func(string) |
| 896 | } |
| 897 | |
| 898 | func (p *intP) Field(name string) P { |
| 899 | p.done(name) |
nothing calls this directly
no outgoing calls
no test coverage detected