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

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

public OnContinueStatement ( Boo.Lang.Compiler.Ast.ContinueStatement node ) : void
node Boo.Lang.Compiler.Ast.ContinueStatement
Результат void
        public override void OnContinueStatement(ContinueStatement node)
        {
            EmitGoTo(_currentLoopInfo.ContinueLabel, node);
        }
EmitAssembly