return true;
} else if (ile instanceof OpcodeEvent) {
OpcodeEvent e = (OpcodeEvent)ile;
return e.getOpcode() == Opcodes.GOTO;
} else if (ile instanceof IMethodCallEvent) {
IMethodCallEvent imce = (IMethodCallEvent)ile;
IBehaviorInfo executedBehavior = imce.getExecutedBehavior();
IBehaviorInfo calledBehavior = imce.getCalledBehavior();
if (executedBehavior == null && calledBehavior == null) {
return true;
}
// Use either executedBehavior or calledBehavior, in that order, depending on which is available.