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