Skip to content

Commit 06258b8

Browse files
committed
added parameter names to 'copymap' call site
1 parent 3635871 commit 06258b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3651,7 +3651,7 @@ module ts {
36513651
var maybeCache = maybeStack[depth];
36523652
// If result is definitely true, copy assumptions to global cache, else copy to next level up
36533653
var destinationCache = result === Ternary.True || depth === 0 ? relation : maybeStack[depth - 1];
3654-
copyMap(maybeCache, destinationCache);
3654+
copyMap(/*source*/maybeCache, /*target*/destinationCache);
36553655
}
36563656
else {
36573657
// A false result goes straight into global cache (when something is false under assumptions it

0 commit comments

Comments
 (0)