Skip to content

Commit 12eb57c

Browse files
committed
Fix linting error
1 parent 917d18a commit 12eb57c

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
@@ -8264,7 +8264,7 @@ namespace ts {
82648264
// junction is always the non-looping control flow path that leads to the top.
82658265
for (let i = flowLoopStart; i < flowLoopCount; i++) {
82668266
if (flowLoopNodes[i] === flow && flowLoopKeys[i] === key) {
8267-
return createFlowType(getUnionType(flowLoopTypes[i]), true);
8267+
return createFlowType(getUnionType(flowLoopTypes[i]), /*incomplete*/ true);
82688268
}
82698269
}
82708270
// Add the flow loop junction and reference to the in-process stack and analyze

0 commit comments

Comments
 (0)