-
Notifications
You must be signed in to change notification settings - Fork 13.2k
Skip typedef in services getJSDocTags #43677
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
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
78ea99a
Symbols in services skip @typedef/@callback in jsdoc
sandersn 13eebd9
comment text skips jsdocs that are typedef-only
sandersn 50f0dc1
Skip comment text from typedef-only jsdocs
sandersn 3cf310e
Merge branch 'main' into skip-typedef-in-services-getJSDocTags
sandersn 983a1c2
Merge branch 'main' into skip-typedef-in-services-getJSDocTags
sandersn a79dcb1
Skip whole comments instead of individual tags
sandersn 51a0c60
add semicolons
sandersn 0829381
retain comments from @callback + better comments
sandersn File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,210 @@ | ||
| [ | ||
| { | ||
| "marker": { | ||
| "fileName": "/tests/cases/fourslash/a.js", | ||
| "position": 114, | ||
| "name": "1" | ||
| }, | ||
| "quickInfo": { | ||
| "kind": "function", | ||
| "kindModifiers": "", | ||
| "textSpan": { | ||
| "start": 113, | ||
| "length": 1 | ||
| }, | ||
| "displayParts": [ | ||
| { | ||
| "text": "function", | ||
| "kind": "keyword" | ||
| }, | ||
| { | ||
| "text": " ", | ||
| "kind": "space" | ||
| }, | ||
| { | ||
| "text": "f", | ||
| "kind": "functionName" | ||
| }, | ||
| { | ||
| "text": "(", | ||
| "kind": "punctuation" | ||
| }, | ||
| { | ||
| "text": ")", | ||
| "kind": "punctuation" | ||
| }, | ||
| { | ||
| "text": ":", | ||
| "kind": "punctuation" | ||
| }, | ||
| { | ||
| "text": " ", | ||
| "kind": "space" | ||
| }, | ||
| { | ||
| "text": "void", | ||
| "kind": "keyword" | ||
| } | ||
| ], | ||
| "documentation": [] | ||
| } | ||
| }, | ||
| { | ||
| "marker": { | ||
| "fileName": "/tests/cases/fourslash/a.js", | ||
| "position": 316, | ||
| "name": "2" | ||
| }, | ||
| "quickInfo": { | ||
| "kind": "function", | ||
| "kindModifiers": "", | ||
| "textSpan": { | ||
| "start": 315, | ||
| "length": 1 | ||
| }, | ||
| "displayParts": [ | ||
| { | ||
| "text": "function", | ||
| "kind": "keyword" | ||
| }, | ||
| { | ||
| "text": " ", | ||
| "kind": "space" | ||
| }, | ||
| { | ||
| "text": "g", | ||
| "kind": "functionName" | ||
| }, | ||
| { | ||
| "text": "(", | ||
| "kind": "punctuation" | ||
| }, | ||
| { | ||
| "text": ")", | ||
| "kind": "punctuation" | ||
| }, | ||
| { | ||
| "text": ":", | ||
| "kind": "punctuation" | ||
| }, | ||
| { | ||
| "text": " ", | ||
| "kind": "space" | ||
| }, | ||
| { | ||
| "text": "void", | ||
| "kind": "keyword" | ||
| } | ||
| ], | ||
| "documentation": [] | ||
| } | ||
| }, | ||
| { | ||
| "marker": { | ||
| "fileName": "/tests/cases/fourslash/a.js", | ||
| "position": 472, | ||
| "name": "3" | ||
| }, | ||
| "quickInfo": { | ||
| "kind": "function", | ||
| "kindModifiers": "", | ||
| "textSpan": { | ||
| "start": 471, | ||
| "length": 1 | ||
| }, | ||
| "displayParts": [ | ||
| { | ||
| "text": "function", | ||
| "kind": "keyword" | ||
| }, | ||
| { | ||
| "text": " ", | ||
| "kind": "space" | ||
| }, | ||
| { | ||
| "text": "h", | ||
| "kind": "functionName" | ||
| }, | ||
| { | ||
| "text": "(", | ||
| "kind": "punctuation" | ||
| }, | ||
| { | ||
| "text": "keep", | ||
| "kind": "parameterName" | ||
| }, | ||
| { | ||
| "text": ":", | ||
| "kind": "punctuation" | ||
| }, | ||
| { | ||
| "text": " ", | ||
| "kind": "space" | ||
| }, | ||
| { | ||
| "text": "Local", | ||
| "kind": "aliasName" | ||
| }, | ||
| { | ||
| "text": ")", | ||
| "kind": "punctuation" | ||
| }, | ||
| { | ||
| "text": ":", | ||
| "kind": "punctuation" | ||
| }, | ||
| { | ||
| "text": " ", | ||
| "kind": "space" | ||
| }, | ||
| { | ||
| "text": "void", | ||
| "kind": "keyword" | ||
| } | ||
| ], | ||
| "documentation": [ | ||
| { | ||
| "text": "The whole thing is kept", | ||
| "kind": "text" | ||
| } | ||
| ], | ||
| "tags": [ | ||
| { | ||
| "name": "param", | ||
| "text": [ | ||
| { | ||
| "text": "keep", | ||
| "kind": "text" | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "name": "typedef", | ||
| "text": [ | ||
| { | ||
| "text": "Local", | ||
| "kind": "aliasName" | ||
| }, | ||
| { | ||
| "text": " ", | ||
| "kind": "space" | ||
| }, | ||
| { | ||
| "text": "kept too", | ||
| "kind": "text" | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "name": "returns", | ||
| "text": [ | ||
| { | ||
| "text": "also kept", | ||
| "kind": "text" | ||
| } | ||
| ] | ||
| } | ||
| ] | ||
| } | ||
| } | ||
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| /// <reference path='fourslash.ts' /> | ||
| // @allowJs: true | ||
| // @Filename: a.js | ||
| //// /** | ||
| //// * The typedef tag should not appear in the quickinfo. | ||
| //// * @typedef {{ foo: 'foo' }} Foo | ||
| //// */ | ||
| //// function f() { } | ||
| //// f/*1*/() | ||
| //// /** | ||
| //// * A removed comment | ||
| //// * @tag Usage shows that non-param tags in comments explain the typedef instead of using it | ||
| //// * @typedef {{ nope: any }} Nope not here | ||
amcasey marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| //// * @tag comment 2 | ||
| //// */ | ||
| //// function g() { } | ||
| //// g/*2*/() | ||
| //// /** | ||
| //// * The whole thing is kept | ||
amcasey marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| //// * @param {Local} keep | ||
| //// * @typedef {{ local: any }} Local kept too | ||
| //// * @returns {void} also kept | ||
| //// */ | ||
| //// function h(keep) { } | ||
| //// h/*3*/({ nope: 1 }) | ||
|
|
||
| verify.baselineQuickInfo() | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Worth an explanatory comment? This looks puzzling without the context of the conversation we had in this PR.