You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
416 B
25 lines
416 B
package pkg;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class TestLocalsSignature {
|
|
public static void main(String[] args) {
|
|
List<String> s = new ArrayList();// 24
|
|
s.add("xxx");// 25
|
|
}// 26
|
|
}
|
|
|
|
class 'pkg/TestLocalsSignature' {
|
|
method 'main ([Ljava/lang/String;)V' {
|
|
7 7
|
|
9 8
|
|
b 8
|
|
11 9
|
|
}
|
|
}
|
|
|
|
Lines mapping:
|
|
24 <-> 8
|
|
25 <-> 9
|
|
26 <-> 10
|
|
|