Class ControlFlow.Node

java.lang.Object
javassist.bytecode.analysis.ControlFlow.Node
Enclosing class:
ControlFlow

public static class ControlFlow.Node extends Object
A node of (post) dominator trees.
  • Method Details

    • toString

      public String toString()
      Returns a String representation.
      Overrides:
      toString in class Object
    • block

      public ControlFlow.Block block()
      Returns the basic block indicated by this node.
    • parent

      public ControlFlow.Node parent()
      Returns the parent of this node.
    • children

      public int children()
      Returns the number of the children of this node.
    • child

      public ControlFlow.Node child(int n)
      Returns the n-th child of this node.
      Parameters:
      n - an index in the array of children.