You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dump parameter names for abstract methods to a text file that FernFlower can then read as abstract methods can not have parameter names at the bytecode level.
@@ -121,6 +123,15 @@ else if (name.equals("<init>")) // Every constructor is given a unique ID, try t
121
123
y += types.get(x).getSize();
122
124
}
123
125
126
+
if ((mn.access & (Opcodes.ACC_ABSTRACT | Opcodes.ACC_NATIVE)) != 0) //Abstract and native methods dont have code so we need to store the names elseware.
0 commit comments