MCPcopy Create free account
hub / github.com/beefytech/Beef / DoWorkLoop

Method DoWorkLoop

IDEHelper/Compiler/BfCompiler.cpp:5751–5765  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5749}
5750
5751bool 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
5767BfMangler::MangleKind BfCompiler::GetMangleKind()
5768{

Callers

nothing calls this directly

Calls 1

ProcessWorkListMethod · 0.80

Tested by

no test coverage detected