Daniel Santiago

Results 9 comments of Daniel Santiago

I wanted to add, that I am willing to write my own [`StackMapTable.Walker`](https://github.com/jboss-javassist/javassist/blob/master/src/main/javassist/bytecode/StackMapTable.java#L148) that performs the offset shift operation, but I don't know enough about the JVM Specs to feel...

@chibash Yes I have and it works well, I mentioned this in my original comment but it might have gotten lost in the rest of it: > I am aware...

Hi @chibash, just wanted to ping you back if you had any updates on this issue? It puts us in an awkward position because if we release a version of...

Thanks, yeah I definitely don't want to be creating my own stack map frames, that is very complex. I am really relying on inserting exclusively (`insertEx`) so that branch statements...

I don't think Dagger can do much here as this seems related to how KAPT gives Dagger's processor its inputs and they not being quite right, something Dagger does not...

Thanks for sending this, looks promising! I am a bit busy this week but will try to take a look as soon as I can.

Moving to draft... I was further testing and it seems `ClassLoader.getPlatformClassLoader()` is not available.? Is the JDK used to compile the plugin at least 9 or greater? I wouldn't like...

Yup, the plugin is jvm target 8 so `ClassLoader.getPlatformClassLoader()` is not available (added in Java 9), I opted for removing the second `null` param of `URLClassLoader` so it uses the...

Added an integration test, thanks for the hints @dkrasnoff.