| 2604 | } |
| 2605 | |
| 2606 | void BfDefBuilder::SetNamespaceState(const NamespaceState& namespaceState) |
| 2607 | { |
| 2608 | while ((int)mNamespaceSearch.size() > namespaceState.mNamespaceSearchCount) |
| 2609 | { |
| 2610 | BfAtomComposite& atomComposite = mNamespaceSearch[0]; |
| 2611 | mSystem->ReleaseAtomComposite(atomComposite); |
| 2612 | mNamespaceSearch.RemoveAt(0); |
| 2613 | } |
| 2614 | mNamespace = namespaceState.mNamespace; |
| 2615 | } |
| 2616 | |
| 2617 | void BfDefBuilder::Visit(BfNamespaceDeclaration* namespaceDeclaration) |
| 2618 | { |
nothing calls this directly
no test coverage detected