Merge branch 'transforms-visitEachChildPerf' into transforms-commentsPerf

This commit is contained in:
Ron Buckton
2016-05-26 22:23:56 -07:00
12 changed files with 101 additions and 195 deletions
+2 -2
View File
@@ -274,9 +274,9 @@ const _super = (function (geti, seti) {
}
function printSourceFileWithExtendedDiagnostics(node: SourceFile) {
performance.mark("printStart");
const printStart = performance.mark();
printSourceFile(node);
performance.measure("printTime", "printStart");
performance.measure("printTime", printStart);
return node;
}