Fix EA-209316: Allow null JDI values in captured value data

This commit is contained in:
Yan Zhulanow
2019-09-27 00:01:47 +09:00
parent d153aa87a8
commit 66758472c7
@@ -33,7 +33,7 @@ data class CapturedValueData(
) : ValueDescriptorImpl(delegate.project) {
override fun getName() = valueName
override fun calcValue(evaluationContext: EvaluationContextImpl?): Value = delegate.calcValue(evaluationContext)
override fun calcValue(evaluationContext: EvaluationContextImpl?): Value? = delegate.calcValue(evaluationContext)
override fun getDescriptorEvaluation(context: DebuggerContext?): PsiExpression = delegate.getDescriptorEvaluation(context)
override fun getModifier(value: JavaValue?): XValueModifier = delegate.getModifier(value)
}