@brief Adds data from the PathNode to an object containing PathElement data.
| 50 | /// @brief Adds data from the PathNode to an object containing |
| 51 | /// PathElement data. |
| 52 | void addNodeData(PathNode const &node, Json::Value &val) { |
| 53 | val["path"] = getFullPath(node); |
| 54 | val["type"] = getTypeName(node); |
| 55 | } |
| 56 | |
| 57 | template <typename T> |
| 58 | Json::Value operator()(PathNode const &node, T const &elt) { |
nothing calls this directly
no test coverage detected