Boo.Lang.Compiler.Steps.EmitAssembly.EnterLoop C# (CSharp) Метод

EnterLoop() приватный Метод

private EnterLoop ( Label breakLabel, Label continueLabel ) : void
breakLabel System.Reflection.Emit.Label
continueLabel System.Reflection.Emit.Label
Результат void
        void EnterLoop(Label breakLabel, Label continueLabel)
        {
            _loopInfoStack.Push(_currentLoopInfo);
            _currentLoopInfo = new LoopInfo(breakLabel, continueLabel, _tryBlock);
        }
EmitAssembly