Refactoring compiler utility-related files to use short-hand

This commit is contained in:
Yui T
2014-11-18 12:05:40 -08:00
parent 26a5e4333e
commit d50ce1cb47
4 changed files with 18 additions and 18 deletions

View File

@@ -153,9 +153,9 @@ module ts {
parseStrings(commandLine);
return {
options: options,
filenames: filenames,
errors: errors
options,
filenames,
errors
};
function parseStrings(args: string[]) {