Package org.aspectj.apache.bcel.generic

Examples of org.aspectj.apache.bcel.generic.LoadInstruction


              searchPtr = searchPtr.getPrev()
            }
           
            // A load instruction may tell us the real type of what the clone() call is on
            if (searchPtr.getInstruction() instanceof LoadInstruction) {
              LoadInstruction li = (LoadInstruction)searchPtr.getInstruction();
              li.getIndex();
              LocalVariableTag lvt = LazyMethodGen.getLocalVariableTag(searchPtr,li.getIndex());
              return lvt.getType();
            }
            // A field access instruction may tell us the real type of what the clone() call is on
            if (searchPtr.getInstruction() instanceof FieldInstruction) {
              FieldInstruction si = (FieldInstruction)searchPtr.getInstruction();
View Full Code Here

TOP

Related Classes of org.aspectj.apache.bcel.generic.LoadInstruction

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.