@@ -226,13 +226,13 @@ import {
226226 isParameterPropertyModifier ,
227227 isPartOfTypeNode ,
228228 isPossiblyTypeArgumentPosition ,
229- isQualifiedName ,
230229 isPrivateIdentifier ,
231230 isPrivateIdentifierClassElementDeclaration ,
232231 isPropertyAccessExpression ,
233232 isPropertyAssignment ,
234233 isPropertyDeclaration ,
235234 isPropertyNameLiteral ,
235+ isQualifiedName ,
236236 isRegularExpressionLiteral ,
237237 isSetAccessorDeclaration ,
238238 isShorthandPropertyAssignment ,
@@ -261,8 +261,8 @@ import {
261261 isValidTypeOnlyAliasUseSite ,
262262 isVariableDeclaration ,
263263 isVariableLike ,
264- JsDoc ,
265264 JSDoc ,
265+ JsDoc ,
266266 JSDocImportTag ,
267267 JSDocParameterTag ,
268268 JSDocPropertyTag ,
@@ -318,8 +318,8 @@ import {
318318 ObjectTypeDeclaration ,
319319 or ,
320320 ParameterDeclaration ,
321- parseIsolatedJSDocComment ,
322321 ParenthesizedTypeNode ,
322+ parseIsolatedJSDocComment ,
323323 positionBelongsToNode ,
324324 positionIsASICandidate ,
325325 positionsAreOnSameLine ,
@@ -3638,7 +3638,6 @@ function getCompletionData(
36383638 node = orphanedJsDocQualifiedNameLeft ;
36393639 }
36403640
3641-
36423641 const semanticStart = timestamp ( ) ;
36433642 let completionKind = CompletionKind . None ;
36443643 let hasUnresolvedAutoImports = false ;
@@ -3769,7 +3768,7 @@ function getCompletionData(
37693768 */
37703769 function findJsDocImportNamespaceIdentifier ( sf : SourceFile , namespaceName : string ) : Identifier | undefined {
37713770 for ( const statement of sf . statements ) {
3772- const jsDocNodes = ( statement as Node & { jsDoc ?: JSDoc [ ] } ) . jsDoc ;
3771+ const jsDocNodes = ( statement as Node & { jsDoc ?: JSDoc [ ] ; } ) . jsDoc ;
37733772 for ( const jsDoc of jsDocNodes || [ ] ) {
37743773 for ( const tag of jsDoc . tags || [ ] ) {
37753774 if ( isJSDocImportTag ( tag ) ) {
0 commit comments