Skip to content

Commit 2ef27bc

Browse files
committed
Comment out check for perf retesting
1 parent 540f073 commit 2ef27bc

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/compiler/checker.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21672,12 +21672,12 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
2167221672
tracing?.pop();
2167321673
}
2167421674

21675-
if (entry !== undefined) {
21676-
// If the previous entry and the result disagree, then something has gone wrong.
21677-
const entrySucceeded = !!(entry & RelationComparisonResult.Succeeded);
21678-
const resultSucceeded = result !== Ternary.False;
21679-
Debug.assertEqual(entrySucceeded, resultSucceeded, "Cached relationship does not match recalculated result");
21680-
}
21675+
// if (entry !== undefined) {
21676+
// // If the previous entry and the result disagree, then something has gone wrong.
21677+
// const entrySucceeded = !!(entry & RelationComparisonResult.Succeeded);
21678+
// const resultSucceeded = result !== Ternary.False;
21679+
// Debug.assertEqual(entrySucceeded, resultSucceeded, "Cached relationship does not match recalculated result");
21680+
// }
2168121681

2168221682
if (outofbandVarianceMarkerHandler) {
2168321683
outofbandVarianceMarkerHandler = originalHandler;

0 commit comments

Comments
 (0)