comparison trunk/src/docgen/tests/parse.d @ 732:231c9a44ba8e

Switch to ImportParser.
author Jari-Matti M?kel? <jmjm@iki.fi>
date Sun, 03 Feb 2008 21:38:40 +0200
parents b7503e02fbe7
children
comparison
equal deleted inserted replaced
730:5cb236c6fe52 732:231c9a44ba8e
28 [ "c" ], [ "docgen/teststuff/" ], 28 [ "c" ], [ "docgen/teststuff/" ],
29 null, true, -1, 29 null, true, -1,
30 (char[] fqn, char[] path, Module m) { 30 (char[] fqn, char[] path, Module m) {
31 file.format("{0} = {1}\n", fqn, path); 31 file.format("{0} = {1}\n", fqn, path);
32 }, 32 },
33 (Module imported, Module importer, bool isPublic) { 33 (Module imported, Module importer, bool isPublic, bool isStatic) {
34 file.format("{0} <- {1}\n", 34 file.format("{0} <- {1}\n",
35 imported ? imported.moduleFQN : "null"[], 35 imported ? imported.moduleFQN : "null"[],
36 importer ? importer.moduleFQN : "null"[] 36 importer ? importer.moduleFQN : "null"[]
37 ); 37 );
38 }, 38 },
51 [ "docgen/testsuite" ], [".", "/home/jm/d/tango/"], 51 [ "docgen/testsuite" ], [".", "/home/jm/d/tango/"],
52 null, true, -1, 52 null, true, -1,
53 (char[] fqn, char[] path, Module m) { 53 (char[] fqn, char[] path, Module m) {
54 file.format("{0} = {1}\n", fqn, path); 54 file.format("{0} = {1}\n", fqn, path);
55 }, 55 },
56 (Module imported, Module importer, bool isPublic) { 56 (Module imported, Module importer, bool isPublic, bool isStatic) {
57 file.format("{0} <- {1}\n", 57 file.format("{0} <- {1}\n",
58 imported ? imported.moduleFQN : "null"[], 58 imported ? imported.moduleFQN : "null"[],
59 importer ? importer.moduleFQN : "null"[] 59 importer ? importer.moduleFQN : "null"[]
60 ); 60 );
61 }, 61 },