InternalContext internalContext = step2.getInternalContext();
DebuggerMessage message = DebuggerMessageFactory.backtrace(null, null, true);
try {
// Command is not immediate because we are supposed to be suspended.
internalContext.sendV8CommandAsync(message, false, backtraceProcessor, null);
} catch (ContextDismissedCheckedException e) {
// Can't happen -- we are just creating context, it couldn't have become invalid
throw new RuntimeException(e);
}
}