File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -19216,6 +19216,8 @@ namespace ts {
1921619216
1921719217 function initializeTypeChecker() {
1921819218 // Bind all source files and propagate errors
19219+ performance.mark("heapBeforeBind");
19220+
1921919221 for (const file of host.getSourceFiles()) {
1922019222 bindSourceFile(file, compilerOptions);
1922119223 }
@@ -19265,6 +19267,8 @@ namespace ts {
1926519267 // Setup global builtins
1926619268 addToSymbolTable(globals, builtinGlobals, Diagnostics.Declaration_name_conflicts_with_built_in_global_identifier_0);
1926719269
19270+ performance.mark("heapAfterBind");
19271+
1926819272 getSymbolLinks(undefinedSymbol).type = undefinedWideningType;
1926919273 getSymbolLinks(argumentsSymbol).type = getGlobalType("IArguments");
1927019274 getSymbolLinks(unknownSymbol).type = unknownType;
You can’t perform that action at this time.
0 commit comments