Package 

Interface InstructionResolver


  • 
    public interface InstructionResolver
    
                        

    The basic structure for resolving/finding instructions.

    A basic example:

    val resolver : InstructionResolver = {
        ... resolving my instructions ...
    }
    
    val resolveInsn = resolver.get()
    • Method Summary

      Modifier and Type Method Description
      abstract InsnList get() Resolves the instructions, should need no arguments to achieve this.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • get

         abstract InsnList get()

        Resolves the instructions, should need no arguments to achieve this.