addBinaryShift method

Token addBinaryShift(
  1. int start,
  2. int byteCount
)

Implementation

Token addBinaryShift(int start, int byteCount) {
  //int bitCount = (byteCount * 8) + (byteCount <= 31 ? 10 : byteCount <= 62 ? 20 : 21);
  return BinaryShiftToken(this, start, byteCount);
}