// Work with live callstack instead.
int n = result.liveStack.size();
for (int i = 0; i < n; i++) {
StackFrame sf = result.liveStack.get(i);
MethodInfo method = getTODSession().getClassInformationProvider().getMethodInfo(sf.location().method());
method.setLineNumber(sf.location().lineNumber());
stack.add(method);
}
}else if(result.lastEvent != null && result.lastEvent instanceof IMethodCallEvent && isStepInto){
stack = this.getTODSession().getTODHandler().getCallStack(result.lastEvent, isStepInto, isForward, false);
}else if(result.lastEvent != null && result.afterLastEvent != null && isForward){