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

Leave() public method

Unconditionally branches to the given label. Unlike the regular branch instruction, this instruction can exit out of try, filter and catch blocks.
public Leave ( ILLabel label ) : void
label ILLabel The label to branch to.
return void
        public override void Leave(ILLabel label)
        {
            ClearEvaluationStack();
            BranchCore(label, 0xDD);
        }
DynamicILGenerator