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

Throw() public method

Pops an exception object off the stack and throws the exception.
public Throw ( ) : void
return void
        public override void Throw()
        {
            Emit1ByteOpCode(0x7A, 1, 0);
            PopStackOperands(VESType.Object);
            UnconditionalBranch();
        }
DynamicILGenerator