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

Duplicate() public method

Duplicates the value on the top of the stack.
public Duplicate ( ) : void
return void
        public override void Duplicate()
        {
            Emit1ByteOpCode(0x25, 1, 2);
#if DEBUG
            PushStackOperand(this.operands.Peek());
#endif
        }
DynamicILGenerator