IDEA-382285 Groovy: cannot step into methods anymore

GitOrigin-RevId: a421fe0c2df461e8562e82e32e2f393bc1d0da4f
This commit is contained in:
Egor Ushakov
2025-11-19 22:30:44 +00:00
committed by intellij-monorepo-bot
parent f323709eca
commit 4aa4dde561
@@ -129,8 +129,8 @@ internal open class XDebuggerSmartStepIntoHandler : XDebuggerProxySuspendedActio
catch (ce: CancellationException) {
throw ce
}
catch (e: Throwable) {
LOG.error("Exception while smart step into, falling back to step into", e)
catch (_: Throwable) {
// TODO: need to show some error notification here, but currently we don't have a proper error handling mechanism
session.stepInto(ignoreBreakpoints = false)
}
}