fixed static interface methods

This commit is contained in:
Egor.Ushakov
2017-04-26 20:14:23 +03:00
parent 6a7763922b
commit 478e6896e9
5 changed files with 31 additions and 1 deletions

View File

@@ -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