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

EmitRawBranch() приватный Метод

private EmitRawBranch ( bool branch, Expression condition, Label label ) : void
branch bool
condition Boo.Lang.Compiler.Ast.Expression
label System.Reflection.Emit.Label
Результат void
        void EmitRawBranch(bool branch, Expression condition, Label label)
        {
            condition.Accept(this); PopType();
            _il.Emit(branch ? OpCodes.Brtrue : OpCodes.Brfalse, label);
        }
EmitAssembly