Jurassic.Compiler.DynamicILGenerator.ShiftLeft C# (CSharp) 메소드

ShiftLeft() 공개 메소드

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