Results 281 comments of soywiz

@intrigus You should have access to the AstProgram object (astMethod.program for example). That class has operator get methods that allow you to get actual classes, methods, fields from references: Snipets:...

BTW, now that I'm active again I have joined the irc channel again so you can ask directly

Try reopening/refreshing the project. I moved annotations to another project, and maybe gradle has not been refreshed and/or `Build -> Rebuild Project`. Also if it still doesn't work you can...

Are you using master? I had that issue sometime ago and fixed it. Try a new clone. That sounds like an old version or something. I have successfully installed it...

Im not sure i just click on test an specific test and run it without messing with run configurations. Maybe it has to be with the root path? Not sure....

Scanned the document and couldn't find this (but maybe I missed how to do it other way): List all available KClass with `@Serializer`. Use-case: Having a real-time communication client with...

+1 My use case is running java/gradle compiler in Ubuntu arm64 via Parallels Desktop on a M1 Max. I'm doing a [crossplatform game engine](https://github.com/korlibs/korge-next) and I need to be able...

Probably because this is incompatible with the machine state. I did a await/async for jvm some time ago: https://github.com/soywiz/jawaitasync But at bytecode level. Manipulating the AST is a different story....

The rebase is just merge manually all the commits related to try-catch-finally? Or the api has changed since then?

I would suggest moving the extra parameter to the `ImageDecodingProps`: https://github.com/korlibs/korge/blob/c138ea25343dc864821ac749a2caf80358498a39/korim/src/commonMain/kotlin/com/soywiz/korim/format/ImageFormat.kt#L111 Something like optional nullable output bitmap that some codecs can reuse for single image decoding in the case dimensions...