Package loop

Examples of loop.Reducer


    return null;
  }

  public void reduceAll() {
    for (ClassDecl classDecl : classes.values()) {
      new Reducer(classDecl).reduce();
    }
    for (FunctionDecl functionDecl : functions.values()) {
      new Reducer(functionDecl).reduce();
    }

    if (initializer != null) {
      List<Node> reduced = new ArrayList<Node>(initializer.size());
      for (Node node : initializer) {
        reduced.add(new Reducer(node).reduce());
      }
      initializer = reduced;
    }
  }
View Full Code Here

TOP

Related Classes of loop.Reducer

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.