| 145 | } |
| 146 | |
| 147 | void BfDefBuilder::Visit(BfIdentifierNode* identifier) |
| 148 | { |
| 149 | if (mResolvePassData != NULL) |
| 150 | mResolvePassData->mExteriorAutocompleteCheckNodes.push_back(identifier); |
| 151 | } |
| 152 | |
| 153 | // We need to be aware of the startNode because the reducer adds specifiers like 'static' and 'public' AFTER the method has |
| 154 | // already been handled, so we need to ignore that space while determining if we're "inside" this method or not during |
nothing calls this directly
no test coverage detected