Package org.aspectj.org.eclipse.jdt.core.util

Examples of org.aspectj.org.eclipse.jdt.core.util.ILocalVariableTableEntry


            default :
                nextPC = index <= 255 ? pc + 2 : pc + 3;
        }       
       
        for (int i = 0, max = this.localVariableAttributeLength; i < max; i++) {
            final ILocalVariableTableEntry entry = this.localVariableTableEntries[i];
            final int startPC = entry.getStartPC();
            if (entry.getIndex() == index && (startPC <= nextPC) && ((startPC + entry.getLength()) > nextPC)) {
              final StringBuffer stringBuffer = new StringBuffer();
              if (showIndex) {
                stringBuffer.append(' ').append(index);
              }
              stringBuffer.append(' ').append('[').append(entry.getName()).append(']');
              return String.valueOf(stringBuffer);
            }
        }
      if (showIndex) {
          final StringBuffer stringBuffer = new StringBuffer();
View Full Code Here

TOP

Related Classes of org.aspectj.org.eclipse.jdt.core.util.ILocalVariableTableEntry

Copyright © 2018 www.massapicom. 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.