IDEA-131754 Catch and finally blocks have no line information

This commit is contained in:
Egor.Ushakov
2015-01-14 14:28:55 +03:00
parent 5a96486853
commit 9b32709856
6 changed files with 40 additions and 9 deletions

View File

@@ -9,7 +9,7 @@ public class TestClassVar {
try {
System.out.println();// 29
} finally {
if(this.field_boolean) {
if(this.field_boolean) {// 32
System.out.println();// 33
}
@@ -46,6 +46,8 @@ class 'pkg/TestClassVar' {
3 7
8 9
b 9
1f 11
20 11
26 12
29 12
}
@@ -73,6 +75,7 @@ class 'pkg/TestClassVar' {
Lines mapping:
26 <-> 8
29 <-> 10
32 <-> 12
33 <-> 13
40 <-> 22
45 <-> 26