Skip to content

Commit 550014d

Browse files
committed
Add missing semicolon
1 parent 44d67bd commit 550014d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2989,7 +2989,7 @@ namespace ts {
29892989
}
29902990
const candidates = mapDefined(symbol.declarations, d => {
29912991
if (!isAmbientModule(d) && d.parent && hasNonGlobalAugmentationExternalModuleSymbol(d.parent)) {
2992-
return getSymbolOfNode(d.parent)
2992+
return getSymbolOfNode(d.parent);
29932993
}
29942994
if (isClassExpression(d) && isBinaryExpression(d.parent) && d.parent.operatorToken.kind === SyntaxKind.EqualsToken && isAccessExpression(d.parent.left) && isEntityNameExpression(d.parent.left.expression)) {
29952995
if (isModuleExportsPropertyAccessExpression(d.parent.left) || isExportsIdentifier(d.parent.left.expression)) {

0 commit comments

Comments
 (0)