Skip to content

Commit 564ece6

Browse files
committed
make linter happy
1 parent 37de252 commit 564ece6

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
@@ -21698,7 +21698,7 @@ namespace ts {
2169821698
if (containerFunctionLikeDeclaration) {
2169921699
const topLevelStatementInContainer = findAncestor(node, n => {
2170021700
return n.parent && (isBlock(n.parent) ? n.parent.parent === containerFunctionLikeDeclaration : n.parent === containerFunctionLikeDeclaration);
21701-
})
21701+
});
2170221702
if (topLevelStatementInContainer) {
2170321703
(<Mutable<Node>>topLevelStatementInContainer).flags |= NodeFlags.ContainsRestParameterReference;
2170421704
}

0 commit comments

Comments
 (0)