in llpath/path.go [41:53]
func (pct PathComponentType) String() string {
if pct == pcMapKey {
return "map"
} else if pct == pcSliceIdx {
return "slice"
} else if pct == pcInterface {
return "scalar"
} else {
// This should never happen, but we don't want to return an
// error since that would unnecessarily complicate the fluid API
return "<unknown>"
}
}