asm-intellij-plugin
asm-intellij-plugin copied to clipboard
can't open inner classes's bytecode
when I try to open bytecode for an inner class, it always opens the outer class instead
Hi, can you please add a small example code in here
class example {
class cantAccess1() {}
public void exampleFun() {
var anonymous = new Object() {
public void cantAccess2() {}
}
}
}
https://github.com/Nasller/asm-intellij-plugin/pull/1
I did miss
public class MainClass {}
class cantAccess {
public void yesThisIsLegal() {}
}
where package private in same file is also not visible
You code has multiple issues and can't be compiled:
class example {
class cantAccess1() {} // class can't be defined like this
public void exampleFun() {
public Object() {
public void cantAccess2() {} // You can't define a method inside another method
}
}
}
fixed