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

LoopInfo() публичный Метод

public LoopInfo ( Label breakLabel, Label continueLabel, int tryBlockDepth ) : System
breakLabel System.Reflection.Emit.Label
continueLabel System.Reflection.Emit.Label
tryBlockDepth int
Результат System
        public LoopInfo(Label breakLabel, Label continueLabel, int tryBlockDepth)
        {
            BreakLabel = breakLabel;
            ContinueLabel = continueLabel;
            TryBlockDepth = tryBlockDepth;
        }
LoopInfo