Uses of Class
com.strobel.assembler.flowanalysis.ControlFlowEdge
-
Packages that use ControlFlowEdge Package Description com.strobel.assembler.flowanalysis com.strobel.assembler.metadata -
-
Uses of ControlFlowEdge in com.strobel.assembler.flowanalysis
Fields in com.strobel.assembler.flowanalysis with type parameters of type ControlFlowEdge Modifier and Type Field Description private java.util.List<ControlFlowEdge>
ControlFlowNode. _incoming
private java.util.Iterator<ControlFlowEdge>
ControlFlowNode.PredecessorIterator. _innerIterator
private java.util.Iterator<ControlFlowEdge>
ControlFlowNode.SuccessorIterator. _innerIterator
private java.util.List<ControlFlowEdge>
ControlFlowNode. _outgoing
Methods in com.strobel.assembler.flowanalysis that return ControlFlowEdge Modifier and Type Method Description private ControlFlowEdge
ControlFlowGraphBuilder. createEdge(ControlFlowNode fromNode, ControlFlowNode toNode, JumpType type)
private ControlFlowEdge
ControlFlowGraphBuilder. createEdge(ControlFlowNode fromNode, Instruction toInstruction, JumpType type)
Methods in com.strobel.assembler.flowanalysis that return types with arguments of type ControlFlowEdge Modifier and Type Method Description java.util.List<ControlFlowEdge>
ControlFlowNode. getIncoming()
java.util.List<ControlFlowEdge>
ControlFlowNode. getOutgoing()
-
Uses of ControlFlowEdge in com.strobel.assembler.metadata
Methods in com.strobel.assembler.metadata that return ControlFlowEdge Modifier and Type Method Description private ControlFlowEdge
ExceptionHandlerMapper. createEdge(ControlFlowNode fromNode, ControlFlowNode toNode, JumpType type)
private ControlFlowEdge
ExceptionHandlerMapper. createEdge(ControlFlowNode fromNode, Instruction toInstruction, JumpType type)
-