Class Handler

java.lang.Object
kilim.analysis.Handler

public class Handler extends Object
Representation for a catch handler.
  • Field Details

    • from

      public int from
      Source offset in method's instruction list
    • to

      public int to
      End offset in method's instruction list
    • type

      public String type
      Exception type
    • catchBB

      public BasicBlock catchBB
      catch handler's entry point
    • pos

      public int pos
      the position of the corresponding entry in the unwoven exception table
    • resort

      private static Handler.Resort resort
    • comp

      private static Handler.Comp comp
  • Constructor Details

    • Handler

      public Handler(int aFrom, int aTo, Handler h)
    • Handler

      public Handler(int aFrom, int aTo, String aType, BasicBlock aCatchBB, int pos)
  • Method Details