| 529 | } |
| 530 | |
| 531 | void ObjectIdentifier::getSubPathStr(std::ostream& s, |
| 532 | const ResolveResults& result, |
| 533 | bool toPython) const |
| 534 | { |
| 535 | std::vector<Component>::const_iterator i = components.begin() + result.propertyIndex + 1; |
| 536 | while (i != components.end()) { |
| 537 | if (i->isSimple()) { |
| 538 | s << '.'; |
| 539 | } |
| 540 | i->toString(s, toPython); |
| 541 | ++i; |
| 542 | } |
| 543 | } |
| 544 | |
| 545 | std::string ObjectIdentifier::getSubPathStr(bool toPython) const |
| 546 | { |
no test coverage detected