Semicolon.

This commit is contained in:
Daniel Rosenwasser
2018-07-06 11:28:50 -07:00
parent b706adb3dc
commit 428f1de5bd

View File

@@ -17780,7 +17780,7 @@ namespace ts {
function getSuggestionForNonexistentSymbol(location: Node | undefined, outerName: __String, meaning: SymbolFlags): string | undefined {
const symbolResult = getSuggestedSymbolForNonexistentSymbol(location, outerName, meaning);
return symbolResult && symbolName(symbolResult)
return symbolResult && symbolName(symbolResult);
}
function getSuggestedSymbolForNonexistentModule(name: Identifier, targetModule: Symbol): Symbol | undefined {