Exemplo n.º 1
0
 internal void DumpBlock(int level, BasicBlock block)
 {
     if (DebugLevel >= level)
     {
         BlockList.Dump(block);
     }
 }
Exemplo n.º 2
0
 internal void DumpBlocks(int level = 1)
 {
     if (DebugLevel >= level)
     {
         BlockList.Dump();
     }
 }