public class ControlFlowInstructionVisitor
extends java.lang.Object
Constructor and Description |
---|
ControlFlowInstructionVisitor() |
Modifier and Type | Method and Description |
---|---|
void |
visitBranchingInstruction(BranchingInstruction instruction,
int offset,
int nextOffset) |
void |
visitCallInstruction(CallInstruction instruction,
int offset,
int nextOffset) |
void |
visitCommentInstruction(CommentInstruction instruction,
int offset,
int nextOffset) |
void |
visitConditionalBranchingInstruction(ConditionalBranchingInstruction instruction,
int offset,
int nextOffset) |
void |
visitConditionalGoToInstruction(ConditionalGoToInstruction instruction,
int offset,
int nextOffset) |
void |
visitConditionalThrowToInstruction(ConditionalThrowToInstruction instruction,
int offset,
int nextOffset) |
void |
visitEmptyInstruction(EmptyInstruction instruction,
int offset,
int nextOffset) |
void |
visitGoToInstruction(GoToInstruction instruction,
int offset,
int nextOffset) |
void |
visitInstruction(Instruction instruction,
int offset,
int nextOffset) |
void |
visitReadVariableInstruction(com.intellij.psi.controlFlow.ReadVariableInstruction instruction,
int offset,
int nextOffset) |
void |
visitReturnInstruction(ReturnInstruction instruction,
int offset,
int nextOffset) |
void |
visitSimpleInstruction(SimpleInstruction instruction,
int offset,
int nextOffset) |
void |
visitThrowToInstruction(ThrowToInstruction instruction,
int offset,
int nextOffset) |
void |
visitWriteVariableInstruction(WriteVariableInstruction instruction,
int offset,
int nextOffset) |
public void visitInstruction(Instruction instruction, int offset, int nextOffset)
public void visitEmptyInstruction(EmptyInstruction instruction, int offset, int nextOffset)
public void visitCommentInstruction(CommentInstruction instruction, int offset, int nextOffset)
public void visitReadVariableInstruction(com.intellij.psi.controlFlow.ReadVariableInstruction instruction, int offset, int nextOffset)
public void visitWriteVariableInstruction(WriteVariableInstruction instruction, int offset, int nextOffset)
public void visitSimpleInstruction(SimpleInstruction instruction, int offset, int nextOffset)
public void visitBranchingInstruction(BranchingInstruction instruction, int offset, int nextOffset)
public void visitConditionalBranchingInstruction(ConditionalBranchingInstruction instruction, int offset, int nextOffset)
public void visitConditionalGoToInstruction(ConditionalGoToInstruction instruction, int offset, int nextOffset)
public void visitConditionalThrowToInstruction(ConditionalThrowToInstruction instruction, int offset, int nextOffset)
public void visitThrowToInstruction(ThrowToInstruction instruction, int offset, int nextOffset)
public void visitGoToInstruction(GoToInstruction instruction, int offset, int nextOffset)
public void visitCallInstruction(CallInstruction instruction, int offset, int nextOffset)
public void visitReturnInstruction(ReturnInstruction instruction, int offset, int nextOffset)