Class NewTransformer

  • All Implemented Interfaces:
    Transformer

    public class NewTransformer
    extends java.lang.Object
    implements Transformer
    simply merge

         a=NEW Labc;
         a.();
     

    to

     a = new abc();
     

    Run after [SSATransformer, RemoveLocalFromSSA]

    • Constructor Summary

      Constructors 
      Constructor Description
      NewTransformer()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void transform​(IrMethod method)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • NewTransformer

        public NewTransformer()