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

ShiftLeft() public method

Pops two values from the stack, shifts the first to the left, then pushes the result to the stack.
public ShiftLeft ( ) : void
return void
        public override void ShiftLeft()
        {
            Emit1ByteOpCode(0x62, 2, 1);
            PopStackOperands(VESType.Int32, VESType.Int32);
            PushStackOperand(VESType.Int32);
        }
DynamicILGenerator