Few tips #24
Replies: 2 comments 1 reply
-
|
hello and thank you for the kind words I'm going to try async is frankly a necessary evil for now, as I don't actually know the class files the decompiler will need, it often needs a part of the JDK or other dependent classes to complete its internal class hierarchy - I can't simply load everything into memory either, as the project is built for viewing huge JARs and everything is read+decompressed only on demand to not strain the memory budget |
Beta Was this translation helpful? Give feedback.
-
|
Another question. Don't you mind if I add a link to your project to TeaVM gallery? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi! Great project. Though after digging a bit into code I found few places where it can be improved:
WebAssembly.Module.imports, then you can simply switch off auto importing by passingnoAutoImports: truetoloadoptions. You don't import any ES modules, so you don't need this. Anyway, this can be workarounded better, for example, by adding custom section with ES descriptors. I could do it a bit later.Beta Was this translation helpful? Give feedback.
All reactions