| 161 | } |
| 162 | |
| 163 | static void |
| 164 | prependGroupNameRecursive(const NodePtr& group, |
| 165 | std::string& name) |
| 166 | { |
| 167 | name.insert(0, "."); |
| 168 | name.insert( 0, group->getScriptName_mt_safe() ); |
| 169 | NodeCollectionPtr hasParentGroup = group->getGroup(); |
| 170 | NodeGroupPtr isGrp = std::dynamic_pointer_cast<NodeGroup>(hasParentGroup); |
| 171 | if (isGrp) { |
| 172 | prependGroupNameRecursive(isGrp->getNode(), name); |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | std::string |
| 177 | Node::getFullyQualifiedNameInternal(const std::string& scriptName) const |
no test coverage detected