| 267 | operator FLKeyPath() const {return _path;} |
| 268 | |
| 269 | Value eval(Value root) const { |
| 270 | return FLKeyPath_Eval(_path, root); |
| 271 | } |
| 272 | |
| 273 | static Value eval(slice_NONNULL specifier, Value root, FLError *error) { |
| 274 | return FLKeyPath_EvalOnce(specifier, root, error); |
nothing calls this directly
no test coverage detected