diff trunk/src/docgen/tests/graphs.d @ 732:231c9a44ba8e

Switch to ImportParser.
author Jari-Matti M?kel? <jmjm@iki.fi>
date Sun, 03 Feb 2008 21:38:40 +0200
parents ec8dd7b8bf0c
children
line wrap: on
line diff
--- a/trunk/src/docgen/tests/graphs.d	Sun Feb 03 18:59:34 2008 +0100
+++ b/trunk/src/docgen/tests/graphs.d	Sun Feb 03 21:38:40 2008 +0200
@@ -135,9 +135,10 @@
     (char[] fqn, char[] path, Module m) {
       vertices[m.moduleFQN] = new DepGraph.Vertex(m.moduleFQN, m.filePath, id++);
     },
-    (Module imported, Module importer, bool isPublic) {
+    (Module imported, Module importer, bool isPublic, bool isStatic) {
       auto edge = vertices[imported.moduleFQN].addChild(vertices[importer.moduleFQN]);
       edge.isPublic = isPublic;
+      edge.isStatic = isStatic;
       edges ~= edge;
     },
     modules