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.
30 lines
503 B
30 lines
503 B
package pkg;
|
|
|
|
public interface TestInterfaceSuper {
|
|
default void defaultMethod() {
|
|
}// 4
|
|
|
|
public static class Impl implements TestInterfaceSuper {
|
|
public void defaultMethod() {
|
|
TestInterfaceSuper.super.defaultMethod();// 8
|
|
}// 9
|
|
}
|
|
}
|
|
|
|
class 'pkg/TestInterfaceSuper' {
|
|
method 'defaultMethod ()V' {
|
|
0 4
|
|
}
|
|
}
|
|
|
|
class 'pkg/TestInterfaceSuper$Impl' {
|
|
method 'defaultMethod ()V' {
|
|
1 8
|
|
4 9
|
|
}
|
|
}
|
|
|
|
Lines mapping:
|
|
4 <-> 5
|
|
8 <-> 9
|
|
9 <-> 10
|
|
|