Boo.Lang.Compiler.Steps.EmitAssembly.OnLabelStatement C# (CSharp) 메소드

OnLabelStatement() 공개 메소드

public OnLabelStatement ( Boo.Lang.Compiler.Ast.LabelStatement node ) : void
node Boo.Lang.Compiler.Ast.LabelStatement
리턴 void
        public override void OnLabelStatement(LabelStatement node)
        {
            EmitDebugInfo(node);
            _il.MarkLabel(((InternalLabel)node.Entity).Label);
        }
EmitAssembly