Changeset 13900 for branches/dev-jw-2590/Compiler/ModelicaCompiler/src/jastadd/ModelicaCompiler.jrag
- Timestamp:
- Oct 29, 2019 1:59:02 PM (6 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/dev-jw-2590/Compiler/ModelicaCompiler/src/jastadd/ModelicaCompiler.jrag
r13781 r13900 563 563 * The dump will be saved in a file named <code>"node_count.txt"</code>. 564 564 */ 565 protected void dumpNodeCountFile( )565 protected void dumpNodeCountFile(Root root) 566 566 throws IOException { 567 567 if (dumpMemoryUse) { 568 568 String file = "node_count.txt"; 569 569 log.debug("Dumping node counts to '" + file + "'..."); 570 ASTNode.dumpNodeCount(file);570 root.dumpNodeCount(file); 571 571 } 572 572 } … … 1223 1223 icd.flattenInstClassDecl(fc); 1224 1224 dumpMemoryUseFile(fc, "flat", true); 1225 dumpNodeCountFile( );1225 dumpNodeCountFile(icd.root()); 1226 1226 icd = null; 1227 1227 ASTNode.endStep("flatten()"); … … 2592 2592 2593 2593 private static ArrayList<ModuleContributor> CONTRIBUTORS = new ArrayList<>(); 2594 private staticHashMap<Module, String> libraryNames = new HashMap<>();2594 private HashMap<Module, String> libraryNames = new HashMap<>(); 2595 2595 2596 2596 public abstract static class ModuleContributor {
Note: See TracChangeset
for help on using the changeset viewer.