return true;
}
else if (ile instanceof InstantiationEvent || ile instanceof ConstructorChainingEvent) {
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) {