Debugger: implement findExpression method correctly to make work Alt+Click in debugger

This commit is contained in:
Natalia Ukhorskaya
2014-04-11 12:42:38 +04:00
parent bd737a32fb
commit 45d78dae5a
28 changed files with 404 additions and 6 deletions
@@ -106,6 +106,7 @@ import org.jetbrains.jet.plugin.debugger.AbstractKotlinSteppingTest
import org.jetbrains.jet.completion.AbstractMultiFileJvmBasicCompletionTest
import org.jetbrains.jet.plugin.refactoring.introduce.introduceVariable.AbstractJetExtractionTest
import org.jetbrains.jet.plugin.debugger.evaluate.AbstractKotlinEvaluateExpressionTest
import org.jetbrains.jet.plugin.debugger.evaluate.AbstractSelectExpressionForDebuggerTest
fun main(args: Array<String>) {
System.setProperty("java.awt.headless", "true")
@@ -574,6 +575,10 @@ fun main(args: Array<String>) {
model("refactoring/introduceVariable", extension = "kt", testMethod = "doIntroduceVariableTest")
model("refactoring/extractFunction", extension = "kt", testMethod = "doExtractFunctionTest")
}
testClass(javaClass<AbstractSelectExpressionForDebuggerTest>()) {
model("debugger/selectExpression")
}
}
testGroup("j2k/tests/test", "j2k/tests/testData") {