| 65 | std::string toString() const override { return "ExtPath(" + strPath + ")"; } |
| 66 | |
| 67 | ExtPathExpression(std::string const& strPath, bool const& expandLastArray, bool const& imputeNulls) |
| 68 | : strPath(strPath), expandLastArray(expandLastArray), imputeNulls(imputeNulls) { |
| 69 | path = encodeMaybeDotted(strPath); |
| 70 | } |
| 71 | |
| 72 | GenFutureStream<Reference<IReadContext>> evaluate(Reference<IReadContext> const& document) override; |
| 73 |
nothing calls this directly
no test coverage detected