@SuppressWarnings("unchecked")
void moveNew() throws AnalyzerException
{
SourceInterpreter i= new SourceInterpreter();
Analyzer a= new Analyzer(i);
a.analyze(className, this);
final HashMap<AbstractInsnNode, MethodInsnNode> movable= new HashMap<AbstractInsnNode, MethodInsnNode>();
Frame[] frames= a.getFrames();
for (int j= 0; j < methods.size(); j++)
{
MethodInsnNode mnode= methods.get(j);
// require to move NEW instruction
int n= instructions.indexOf(mnode);