File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -19603,7 +19603,7 @@ namespace ts {
19603
19603
const sourceIdentity = getRecursionIdentity(source);
19604
19604
const targetIdentity = getRecursionIdentity(target);
19605
19605
if (sourceIdentity && contains(sourceStack, sourceIdentity)) expandingFlags |= ExpandingFlags.Source;
19606
- if (targetIdentity && contains(targetStack, targetIdentity)) expandingFlags |= ExpandingFlags.Target ;
19606
+ if (targetIdentity && contains(targetStack, targetIdentity)) expandingFlags |= ExpandingFlags.Both ;
19607
19607
if (expandingFlags !== ExpandingFlags.Both) {
19608
19608
if (sourceIdentity) (sourceStack || (sourceStack = [])).push(sourceIdentity);
19609
19609
if (targetIdentity) (targetStack || (targetStack = [])).push(targetIdentity);
You can’t perform that action at this time.
0 commit comments