Debugger: Log evaluation status from Java contexts

IntelliJ doesn't call KotlinDebuggerEvaluator from Java contexts; instead, it calls JavaDebuggerEvaluator.
Unfortunately, there seems to be no way to figure out the exact evaluation type for Java contexts. However, we can at least log the evaluation status itself.
This commit is contained in:
Yan Zhulanow
2019-10-16 17:59:05 +09:00
parent 6bf15b6d37
commit 2cb055a3bd
2 changed files with 10 additions and 2 deletions
@@ -72,6 +72,7 @@ class KotlinDebuggerEvaluator(
WATCH(WatchNodeImpl::class.java),
WINDOW(EvaluatingExpressionRootNode::class.java),
POPUP(XValueHint::class.java),
FROM_JAVA(null),
UNKNOWN(null);
}
}