Boo.Lang.Compiler.Steps.ProcessMethodBodies.EnterForNamespace C# (CSharp) Method

EnterForNamespace() private method

private EnterForNamespace ( Boo.Lang.Compiler.Ast.ForStatement node ) : void
node Boo.Lang.Compiler.Ast.ForStatement
return void
        private void EnterForNamespace(ForStatement node)
        {
            EnterNamespace(new DeclarationsNamespace(CurrentNamespace, node.Declarations));
        }
ProcessMethodBodies