Constructor
| 128 | |
| 129 | // Constructor |
| 130 | ProfileNodeIterator::ProfileNodeIterator(ProfileNode* startingNode) |
| 131 | :mCurrentParentNode(startingNode), |
| 132 | mCurrentChildNode(mCurrentParentNode->getChildNode()){ |
| 133 | |
| 134 | } |
| 135 | |
| 136 | // Enter a given child node |
| 137 | void ProfileNodeIterator::enterChild(int index) { |
nothing calls this directly
no test coverage detected