I am using IntelliJ with built in decompiler. I would like to decompile a .class file and see all methods which are created by java compiler (for instance synthetic bridge methods bridge methods). Is there possibility to do that in IntelliJ?
Asked
Active
Viewed 659 times
1 Answers
1
It's not possible at the moment, please vote for this feature request.

CrazyCoder
- 389,263
- 172
- 990
- 904
-
That is a pity. I have added my vote. So no other plugin which would do that? – fascynacja Feb 12 '17 at 16:32
-
1@fascynacja you can use Fernflower decompiler from the command line or configure an external tool for that. It's the [same engine](https://github.com/JetBrains/intellij-community/blob/master/plugins/java-decompiler/engine/readme.txt) that is used in IDEA, it has an option to show bridge methods. – CrazyCoder Feb 12 '17 at 17:33