Cleaned up a few things
This commit is contained in:
parent
224349ac9c
commit
258e10aef6
14
main.d
14
main.d
|
@ -172,23 +172,17 @@ void main(string[] args)
|
||||||
importDirs ~= dirName(args[1]);
|
importDirs ~= dirName(args[1]);
|
||||||
else
|
else
|
||||||
importDirs ~= getcwd();
|
importDirs ~= getcwd();
|
||||||
bool useStdin = false;
|
Token[] tokens;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
to!size_t(args[1]);
|
to!size_t(args[1]);
|
||||||
useStdin = true;
|
|
||||||
}
|
|
||||||
catch(ConvException e) {}
|
|
||||||
Token[] tokens;
|
|
||||||
if (useStdin)
|
|
||||||
{
|
|
||||||
string f;
|
string f;
|
||||||
char[] buf;
|
char[] buf;
|
||||||
while (stdin.readln(buf))
|
while (stdin.readln(buf))
|
||||||
f ~= buf;
|
f ~= buf;
|
||||||
tokens = f.tokenize();
|
tokens = f.tokenize();
|
||||||
}
|
}
|
||||||
else
|
catch(ConvException e)
|
||||||
{
|
{
|
||||||
tokens = args[1].readText().tokenize();
|
tokens = args[1].readText().tokenize();
|
||||||
args.popFront();
|
args.popFront();
|
||||||
|
|
Loading…
Reference in New Issue