public override void Compile(Execution.VM.ByteCode bc) { if (m_Statements != null) { foreach (Statement s in m_Statements) { if (!(s is NullStatement)) { bc.Emit_Debug(s.TreeNode.GetText()); s.Compile(bc); } } } }