Package org.jreversepro.reflect

Examples of org.jreversepro.reflect.LocalVariableTable.addLocalVariable()


      short length = aDis.readShort();
      short nameIndex = aDis.readShort();
      short descIndex = aDis.readShort();
      short frameIndex = aDis.readShort();

      localVarTable.addLocalVariable(startPc, length, nameIndex, descIndex,
          constPool.getEntryValue(nameIndex), constPool
              .getEntryValue(descIndex), frameIndex);

      String jvmType = constPool.getEntryValue(descIndex);
      if (TypeInferrer.doesTypeOccupy2EntriesInVariableTable(jvmType)) {
View Full Code Here


              .getEntryValue(descIndex), frameIndex);

      String jvmType = constPool.getEntryValue(descIndex);
      if (TypeInferrer.doesTypeOccupy2EntriesInVariableTable(jvmType)) {
        // Add another entry.
        localVarTable.addLocalVariable(startPc, length, nameIndex, descIndex,
            constPool.getEntryValue(nameIndex), constPool
                .getEntryValue(descIndex), (short) (frameIndex + 1));

      }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.