Jurassic.Compiler.DynamicILGenerator.Branch C# (CSharp) Method

Branch() public method

Unconditionally branches to the given label.
public Branch ( ILLabel label ) : void
label ILLabel The label to branch to.
return void
        public override void Branch(ILLabel label)
        {
            BranchCore(label, 0x38);
        }
DynamicILGenerator