-
Notifications
You must be signed in to change notification settings - Fork 12.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use jsdoc aliases if visible when printing types #24153
Changes from all commits
30d2f10
81cda69
7e0727e
a63f725
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4024,6 +4024,10 @@ namespace ts { | |
|
||
function determineIfDeclarationIsVisible() { | ||
switch (node.kind) { | ||
case SyntaxKind.JSDocTypedefTag: | ||
// Top-level jsdoc typedefs are considered exported | ||
// First parent is comment node, second is hosting declaration or token; we only care about those tokens or declarations whose parent is a source file | ||
return !!(node.parent && node.parent.parent && node.parent.parent.parent && isSourceFile(node.parent.parent.parent)); | ||
case SyntaxKind.BindingElement: | ||
return isDeclarationVisible(node.parent.parent); | ||
case SyntaxKind.VariableDeclaration: | ||
|
@@ -5163,8 +5167,8 @@ namespace ts { | |
let result: TypeParameter[]; | ||
for (const node of symbol.declarations) { | ||
if (node.kind === SyntaxKind.InterfaceDeclaration || node.kind === SyntaxKind.ClassDeclaration || | ||
node.kind === SyntaxKind.ClassExpression || node.kind === SyntaxKind.TypeAliasDeclaration) { | ||
const declaration = <InterfaceDeclaration | TypeAliasDeclaration>node; | ||
node.kind === SyntaxKind.ClassExpression || node.kind === SyntaxKind.TypeAliasDeclaration || node.kind === SyntaxKind.JSDocTypedefTag) { | ||
const declaration = <InterfaceDeclaration | TypeAliasDeclaration | JSDocTypedefTag>node; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same. There is a predicate There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. #23947 isn't merged yet |
||
const typeParameters = getEffectiveTypeParameterDeclarations(declaration); | ||
if (typeParameters) { | ||
result = appendTypeParameters(result, typeParameters); | ||
|
@@ -9046,7 +9050,7 @@ namespace ts { | |
} | ||
|
||
function getAliasSymbolForTypeNode(node: TypeNode) { | ||
return node.parent.kind === SyntaxKind.TypeAliasDeclaration ? getSymbolOfNode(node.parent) : undefined; | ||
return (node.parent.kind === SyntaxKind.TypeAliasDeclaration || node.parent.kind === SyntaxKind.JSDocTypedefTag) ? getSymbolOfNode(node.parent) : undefined; | ||
} | ||
|
||
function getAliasTypeArgumentsForTypeNode(node: TypeNode) { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3093,11 +3093,13 @@ namespace ts { | |
* Gets the effective type parameters. If the node was parsed in a | ||
* JavaScript file, gets the type parameters from the `@template` tag from JSDoc. | ||
*/ | ||
export function getEffectiveTypeParameterDeclarations(node: DeclarationWithTypeParameters) { | ||
return node.typeParameters || (isInJavaScriptFile(node) ? getJSDocTypeParameterDeclarations(node) : undefined); | ||
export function getEffectiveTypeParameterDeclarations(node: DeclarationWithTypeParameters | JSDocTypedefTag) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. there are a few other places that we get type parameter declarations of typedef and callback tags. They explicitly do not use That said, it's probably the Right Thing to make There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Do you not have such a fix in #23947 ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, along with the astonishing ability to forget what I did two weeks ago! |
||
return isJSDocTypedefTag(node) | ||
? getJSDocTypeParameterDeclarations(node) | ||
: node.typeParameters || (isInJavaScriptFile(node) ? getJSDocTypeParameterDeclarations(node) : undefined); | ||
} | ||
|
||
export function getJSDocTypeParameterDeclarations(node: DeclarationWithTypeParameters) { | ||
export function getJSDocTypeParameterDeclarations(node: DeclarationWithTypeParameters | JSDocTypedefTag) { | ||
const templateTag = getJSDocTemplateTag(node); | ||
return templateTag && templateTag.typeParameters; | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need to handle SyntaxKind.CallbackTag too
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#23947 isn't merged yet