Boo.Lang.Compiler.Steps.EmitAssembly.EnterLoop C# (CSharp) Method

EnterLoop() private method

private EnterLoop ( Label breakLabel, Label continueLabel ) : void
breakLabel System.Reflection.Emit.Label
continueLabel System.Reflection.Emit.Label
return void
        void EnterLoop(Label breakLabel, Label continueLabel)
        {
            _loopInfoStack.Push(_currentLoopInfo);
            _currentLoopInfo = new LoopInfo(breakLabel, continueLabel, _tryBlock);
        }
EmitAssembly