Package org.candle.decompiler.intermediate.graph.enhancer

Examples of org.candle.decompiler.intermediate.graph.enhancer.ConstantArrayCompressor


  public void processIntermediate(IntermediateGraphContext igc) {
    List<GraphIntermediateVisitor> enhancers = new LinkedList<GraphIntermediateVisitor>();
    enhancers.add(new IntermediateGraphWriter(igc, "ibefore.dot"));
   
    enhancers.add(new MergeConditionExpression(igc));
    enhancers.add(new ConstantArrayCompressor(igc));
   
    enhancers.add(new ConditionToWhileLoop(igc));
    enhancers.add(new ConditionExternalToWhileLoop(igc));

    enhancers.add(new FinallyRangeVisitor(igc));
View Full Code Here

TOP

Related Classes of org.candle.decompiler.intermediate.graph.enhancer.ConstantArrayCompressor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.