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

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

public OnUnlessStatement ( Boo.Lang.Compiler.Ast.UnlessStatement node ) : void
node Boo.Lang.Compiler.Ast.UnlessStatement
Результат void
        public override void OnUnlessStatement(UnlessStatement node)
        {
            Label endLabel = _il.DefineLabel();
            EmitDebugInfo(node);
            EmitBranchTrue(node.Condition, endLabel);
            node.Block.Accept(this);
            _il.MarkLabel(endLabel);
        }
EmitAssembly