Fix bug in JSO implementation

This commit is contained in:
Alexey Andreev 2015-10-12 21:26:05 +03:00
parent f6bc6f2fcf
commit 24952e5b86

View File

@ -1125,6 +1125,13 @@ class JSClassProcessor {
if (method != null) {
return method;
}
if (cls.getParent() != null && !cls.getParent().equals(cls.getName())
&& !cls.getParent().equals("java.lang.Object")) {
method = getMethod(new MethodReference(cls.getParent(), ref.getDescriptor()));
if (method != null) {
return method;
}
}
for (String iface : cls.getInterfaces()) {
method = getMethod(new MethodReference(iface, ref.getDescriptor()));
if (method != null) {