MCPcopy Create free account
hub / github.com/cel-expr/cel-go / fieldPath

Struct fieldPath

cel/fieldpaths.go:12–18  ·  view source on GitHub ↗

fieldPath represents a selection path to a field from a variable in a CEL environment.

Source from the content-addressed store, hash-verified

10
11// fieldPath represents a selection path to a field from a variable in a CEL environment.
12type 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.
21func (f *fieldPath) Documentation() *common.Doc {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected