mirror of
https://github.com/konsoletyper/teavm.git
synced 2025-01-18 10:34:01 +08:00
Fix bug in JSO implementation
This commit is contained in:
parent
f6bc6f2fcf
commit
24952e5b86
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user