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

Pop() public method

Pops the value from the top of the stack.
public Pop ( ) : void
return void
        public override void Pop()
        {
            Emit1ByteOpCode(0x26, 1, 0);
            PopStackOperands(VESType.Int32 | VESType.Int64 | VESType.Float | VESType.NativeInt | VESType.Object | VESType.ManagedPointer);
        }
DynamicILGenerator