| 120 | } |
| 121 | |
| 122 | void BfSource::FinishSideNodes() |
| 123 | { |
| 124 | if (!mPendingSideNodes.IsEmpty()) |
| 125 | { |
| 126 | mSidechannelRootNode->Init(mPendingSideNodes, mAlloc); |
| 127 | qsort(mSidechannelRootNode->mChildArr.mVals, mSidechannelRootNode->mChildArr.mSize, sizeof(ASTREF(BfAstNode*)), NodeCompare); |
| 128 | mPendingSideNodes.clear(); |
| 129 | } |
| 130 | } |
| 131 | |
| 132 | void BfSource::Close() |
| 133 | { |
no test coverage detected