From fdef0b03fe53c19df5a2b662129382df0be27b03 Mon Sep 17 00:00:00 2001 From: Natalia Ukhorskaya Date: Fri, 21 Mar 2014 17:21:42 +0400 Subject: [PATCH] Fix compilation --- .../jet/plugin/debugger/KotlinSmartStepIntoHandler.kt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/idea/src/org/jetbrains/jet/plugin/debugger/KotlinSmartStepIntoHandler.kt b/idea/src/org/jetbrains/jet/plugin/debugger/KotlinSmartStepIntoHandler.kt index 893285f977d..4d9cbeb30bd 100644 --- a/idea/src/org/jetbrains/jet/plugin/debugger/KotlinSmartStepIntoHandler.kt +++ b/idea/src/org/jetbrains/jet/plugin/debugger/KotlinSmartStepIntoHandler.kt @@ -166,9 +166,7 @@ public class KotlinSmartStepIntoHandler : JvmSmartStepIntoHandler() { if (function is JetNamedFunction) { val psiMethod = LightClassUtil.getLightClassMethod(function) if (psiMethod != null) { - result.add(MethodSmartStepTarget(method = psiMethod, label = null, - highlightElement = expression, - needBreakpointRequest = false, lines = lines)) + result.add(MethodSmartStepTarget(psiMethod, null, expression, false, lines)) } } }