mirror of
https://github.com/i-net-software/JWebAssembly.git
synced 2025-03-15 02:44:47 +01:00
Handle call of Object methods from arrays
This commit is contained in:
parent
0cd5eab774
commit
71fad44962
@ -231,6 +231,11 @@ public class ModuleGenerator {
|
||||
continue;
|
||||
}
|
||||
|
||||
if( classFile == null ) {
|
||||
// all extends from object, also arrays
|
||||
classFile = classFileLoader.get( "java/lang/Object" );
|
||||
}
|
||||
|
||||
// search if there is a super class with the same signature
|
||||
ClassFile superClassFile = classFile;
|
||||
while( superClassFile != null ) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user