Try-catch exception value is not visible in debugger's local variables

#KT-3070 Fixed
This commit is contained in:
Natalia Ukhorskaya
2014-06-20 15:54:37 +04:00
parent a17bcce682
commit bdc60441c0
3 changed files with 25 additions and 0 deletions
@@ -0,0 +1,15 @@
class A {
fun foo() {
try {
val a = 1
}
catch(e : Throwable) {
}
}
}
// METHOD : A.foo()V
// VARIABLE : NAME=a TYPE=I INDEX=1
// VARIABLE : NAME=e TYPE=Ljava/lang/Throwable; INDEX=1
// VARIABLE : NAME=this TYPE=LA; INDEX=0