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