Documentation implements the Documentor interface.
()
| 19 | |
| 20 | // Documentation implements the Documentor interface. |
| 21 | func (f *fieldPath) Documentation() *common.Doc { |
| 22 | return common.NewFieldDoc(f.path, f.celType.String(), f.description) |
| 23 | } |
| 24 | |
| 25 | type documentationProvider interface { |
| 26 | // FindStructFieldDescription returns documentation for a field if available. |
nothing calls this directly
no test coverage detected