fieldPath represents a selection path to a field from a variable in a CEL environment.
| 10 | |
| 11 | // fieldPath represents a selection path to a field from a variable in a CEL environment. |
| 12 | type fieldPath struct { |
| 13 | celType *Type |
| 14 | // path represents the selection path to the field. |
| 15 | path string |
| 16 | description string |
| 17 | isLeaf bool |
| 18 | } |
| 19 | |
| 20 | // Documentation implements the Documentor interface. |
| 21 | func (f *fieldPath) Documentation() *common.Doc { |
nothing calls this directly
no outgoing calls
no test coverage detected