324325326327328329330331332333334
break; case Opcode.LDC_W: case Opcode.LDC2_W: { int constIndex = ( iter.byteAt( pos + 1 ) << 8 ) | iter.byteAt( pos + 2 ); updateHashWithConstant( digest, constants, constIndex ); } break; } }