File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -437,7 +437,7 @@ function getSymbolDisplayPartsDocumentationAndSymbolKindWorker(
437437 ) ;
438438 }
439439 if ( signature ) {
440- addSignatureDisplayParts ( signature , allSignatures , /*flags*/ TypeFormatFlags . None ) ;
440+ addSignatureDisplayParts ( signature , allSignatures ) ;
441441 }
442442 hasAddedSymbolInfo = true ;
443443 hasMultipleSignatures = allSignatures . length > 1 ;
@@ -511,7 +511,6 @@ function getSymbolDisplayPartsDocumentationAndSymbolKindWorker(
511511 if ( ! tryUnfoldSymbol ( symbol , semanticMeaning ) ) {
512512 const declaration = getDeclarationOfKind < ModuleDeclaration > ( symbol , SyntaxKind . ModuleDeclaration ) ;
513513 const isNamespace = declaration && declaration . name && declaration . name . kind === SyntaxKind . Identifier ;
514- // const isNamespace = !(declaration && declaration.name && declaration.name.kind === SyntaxKind.StringLiteral); // TODO: breaking change
515514 displayParts . push ( keywordPart ( isNamespace ? SyntaxKind . NamespaceKeyword : SyntaxKind . ModuleKeyword ) ) ;
516515 displayParts . push ( spacePart ( ) ) ;
517516 addFullSymbolName ( symbol ) ;
You can’t perform that action at this time.
0 commit comments