565566567568569570571572573574575
case ISHL: case LSHL: { JInt n2 = (JInt) pop(); JBitNumber n1 = (JBitNumber) pop(); push(n1.shl(n2.v)); } break; case ISHR: case LSHR: { JInt n2 = (JInt) pop();