| 5749 | } |
| 5750 | |
| 5751 | bool BfCompiler::DoWorkLoop(bool onlyReifiedTypes, bool onlyReifiedMethods) |
| 5752 | { |
| 5753 | bool hadAnyWork = false; |
| 5754 | |
| 5755 | while (true) |
| 5756 | { |
| 5757 | bool didWork = false; |
| 5758 | didWork |= mContext->ProcessWorkList(onlyReifiedTypes, onlyReifiedMethods); |
| 5759 | if (!didWork) |
| 5760 | break; |
| 5761 | hadAnyWork = true; |
| 5762 | } |
| 5763 | |
| 5764 | return hadAnyWork; |
| 5765 | } |
| 5766 | |
| 5767 | BfMangler::MangleKind BfCompiler::GetMangleKind() |
| 5768 | { |
nothing calls this directly
no test coverage detected