parent
6a7763922b
commit
478e6896e9
Binary file not shown.
@ -0,0 +1,23 @@ |
||||
package pkg; |
||||
|
||||
public interface TestInterfaceMethods { |
||||
static void staticMethod() { |
||||
}// 4 |
||||
|
||||
default void defaultMethod() { |
||||
}// 5 |
||||
} |
||||
|
||||
class 'pkg/TestInterfaceMethods' { |
||||
method 'staticMethod ()V' { |
||||
0 4 |
||||
} |
||||
|
||||
method 'defaultMethod ()V' { |
||||
0 7 |
||||
} |
||||
} |
||||
|
||||
Lines mapping: |
||||
4 <-> 5 |
||||
5 <-> 8 |
@ -0,0 +1,6 @@ |
||||
package pkg; |
||||
|
||||
public interface TestInterfaceMethods { |
||||
static void staticMethod() {} |
||||
default void defaultMethod() {} |
||||
} |
Loading…
Reference in new issue