```cpp case EParOp_ShiftLeft: pushInt(popDataValue() << popDataValue()); break; case EParOp_ShiftRight: pushInt(popDataValue() << popDataValue()); break; ``` Shift Right does not Shift Right.
Shift Right does not Shift Right.