I need a particular "Data Analysis" on ASM code using a Java Class or anything that can be used on Eclipse. Specifically i need identify three step on a variable with this order: 1) Use; 2) Initialization; 3) Delete.
Thanks.
You can't Use
a variable before Initialization
. You can't Delete
a variable.
If you want to analyse byte code I suggest using ObjectWeb's ASM library.