comparison trunk/src/main.d @ 737:f88b5285b86b

Implemented DDocEmitter. Fixed quite a few bugs.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sat, 09 Feb 2008 02:00:20 +0100
parents ca7607226caa
children f3dead0310ce
comparison
equal deleted inserted replaced
736:2eee29aaa357 737:f88b5285b86b
95 // Parse arguments. 95 // Parse arguments.
96 foreach (arg; args[3..$]) 96 foreach (arg; args[3..$])
97 { 97 {
98 if (arg == "-i") 98 if (arg == "-i")
99 incUndoc = true; 99 incUndoc = true;
100 else if (arg.length > 5 && toLower(arg[$-4..$]) == "ddoc") 100 else if (arg.length > 5 && toLower(arg[$-4..$].dup) == "ddoc")
101 macroPaths ~= arg; 101 macroPaths ~= arg;
102 else 102 else
103 filePaths ~= arg; 103 filePaths ~= arg;
104 } 104 }
105 105