From f682aa8af546838f773035bd1d1e4e829c32d419 Mon Sep 17 00:00:00 2001 From: Konstantin Ulitin Date: Mon, 25 Jul 2016 17:22:19 +0300 Subject: [PATCH] karma debug: fix NPE (WEB-22522) --- platform/script-debugger/debugger-ui/src/SuspendContextView.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/script-debugger/debugger-ui/src/SuspendContextView.kt b/platform/script-debugger/debugger-ui/src/SuspendContextView.kt index 18ffbe2db2d8..c129ab4b6038 100644 --- a/platform/script-debugger/debugger-ui/src/SuspendContextView.kt +++ b/platform/script-debugger/debugger-ui/src/SuspendContextView.kt @@ -151,7 +151,7 @@ class ExecutionStackView(val suspendContext: SuspendContext<*>, continue } - result.add(CallFrameView(frame, viewSupport, script, sourceInfo, isInLibraryContent)) + result.add(CallFrameView(frame, viewSupport, script, sourceInfo, isInLibraryContent, suspendContext.vm)) } } }