Revision 16be97cd98c7b31844723f3c8f75e26508dc3cac authored by Anders Hejlsberg on 14 September 2018, 21:07:34 UTC, committed by Anders Hejlsberg on 14 September 2018, 21:07:34 UTC
1 parent 6200aa0
Raw File
perftsc.ts
/// <reference path="perfsys.ts"/>
/// <reference path="..\src\compiler\tsc.ts"/>

// resolve all files used in this compilation
if (perftest.hasLogIOFlag()) {
    perftest.interceptIO();

    const compilerHost: ts.CompilerHost = {
        getSourceFile: (s, v) => {
            const content = perftest.readFile(s);
            return content !== undefined ? ts.createSourceFile(s, content, v) : undefined;
        },
        getDefaultLibFileName: () => ts.combinePaths(ts.getDirectoryPath(ts.normalizePath(perftest.getExecutingFilePath())), "lib.d.ts"),
        writeFile: (f: string, content: string) => { throw new Error("Unexpected operation: writeFile"); },
        getCurrentDirectory: () => perftest.getCurrentDirectory(),
        getCanonicalFileName: (f: string) => ts.sys.useCaseSensitiveFileNames ? f : f.toLowerCase(),
        useCaseSensitiveFileNames: () => ts.sys.useCaseSensitiveFileNames,
        getNewLine: () => ts.sys.newLine
    };

    const commandLine = ts.parseCommandLine(perftest.getArgsWithoutLogIOFlag());
    const program = ts.createProgram(commandLine.fileNames, commandLine.options, compilerHost);
    const fileNames = program.getSourceFiles().map(f => f.fileName);
    perftest.writeIOLog(fileNames);
}
else {
    const io = perftest.prepare();
    ts.executeCommandLine(perftest.getArgsWithoutIOLogFile());
    perftest.write(io.getOut());
}
back to top