fixed static interface methods
This commit is contained in:
23
testData/results/TestInterfaceMethods.dec
Normal file
23
testData/results/TestInterfaceMethods.dec
Normal 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
|
||||
Reference in New Issue
Block a user