| 824 | } |
| 825 | |
| 826 | NodePtr |
| 827 | NodeCollection::getNodeByFullySpecifiedName(const std::string& fullySpecifiedName) const |
| 828 | { |
| 829 | std::string toFind; |
| 830 | std::string recurseName; |
| 831 | |
| 832 | getNodeNameAndRemainder_LeftToRight(fullySpecifiedName, toFind, recurseName); |
| 833 | |
| 834 | return _imp->findNodeInternal(toFind, recurseName); |
| 835 | } |
| 836 | |
| 837 | void |
| 838 | NodeCollection::fixRelativeFilePaths(const std::string& projectPathName, |
no test coverage detected