731732733734735736737738739740741742
{ Expression rhs= a.getRightHandSide(); if (rhs instanceof ClassInstanceCreation) { ClassInstanceCreation cic= (ClassInstanceCreation) rhs; if (cic.getTypeBinding().toString().equals("java.lang.String")) { return; } }
11641165116611671168116911701171117211731174
{ ConstantClass c= (ConstantClass) constantPool.getConstant(bytes.readUnsignedShort()); ObjectType type= new ObjectType(c.getBytes(constantPool).replace('/', '.')); instruction= new ClassInstanceCreation(type); } break; case Const.NEWARRAY: {