-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Add see tag support #39760
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
Add see tag support #39760
Changes from 34 commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
4394731
Add see tag parser
Kingwl c89574c
add baseline
Kingwl 5b49a14
fix symbol resolve
Kingwl d916393
add more case
Kingwl 2611909
fix unittests
Kingwl 3d47343
improve tests and parser
Kingwl bcef14f
accept baseline
Kingwl 5442afd
Adopt package-lock.json and npm ci
amcasey 5521ba5
Add a workflow to update package-lock.json daily
amcasey 95462f5
Git ignore package-lock.json and forcibly update in workflow
amcasey 7c667cb
Update bot email address
amcasey fd29771
Delete extra npm update
amcasey 37700f5
Update package-lock.json
typescript-bot ef08789
Add compactDisplay and signDisplay to NumberFormatOptions (#40039)
wyze 6a75377
Fix typo in (Readonly)Set.keys comment (fixes #40164) (#40176)
cherryblossom000 85501e6
fix(26325): use a unique name for reserved words in 'constructor like…
a-tarasyuk b4393fe
fix(25770): add diagnostic message for the possible mapped type used …
a-tarasyuk e6dabbe
fix(31046): add new diagnostic message for incompatible constructor s…
a-tarasyuk d0ae77e
Update package-lock.json
typescript-bot d187c63
Update package-lock.json
typescript-bot acbcd61
Merge branch 'master' of github.com:Kingwl/TypeScript
Kingwl e46ce36
Merge branch 'master' of github.com:microsoft/TypeScript
Kingwl a8abadb
Merge branch 'master' into see-tag
Kingwl bd12cd4
Merge branch 'master' into see-tag
Kingwl e2b6832
Add rename support
Kingwl 50d25aa
Accpet baseline
Kingwl 96ec48d
wip
Kingwl b3178d4
fix anders
egamma 8cac241
Revert "fix anders"
egamma 3b502f4
Fix call hierarchy item serialization and server tests (#40348)
andrewbranch eb9ad2a
Merge branch 'master' into see-tag
Kingwl 6d90fb3
Avoid error
Kingwl 51b67d7
accept baseline
Kingwl 2c6f1bd
Add more tests
Kingwl 1effe1b
Merge branch 'master' into see-tag
Kingwl 6451424
Add signature name resolve
Kingwl 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
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
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
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
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
27 changes: 2 additions & 25 deletions
27
tests/baselines/reference/JSDocParsing/DocComments.parsesCorrectly.@link tags.json
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 |
---|---|---|
@@ -1,32 +1,9 @@ | ||
{ | ||
"kind": "JSDocComment", | ||
"pos": 0, | ||
"end": 127, | ||
"end": 63, | ||
"flags": "JSDoc", | ||
"modifierFlagsCache": 0, | ||
"transformFlags": 0, | ||
"comment": "{@link first link}\nInside {@link link text} thing", | ||
"tags": { | ||
"0": { | ||
"kind": "JSDocTag", | ||
"pos": 63, | ||
"end": 68, | ||
"modifierFlagsCache": 0, | ||
"transformFlags": 0, | ||
"tagName": { | ||
"kind": "Identifier", | ||
"pos": 64, | ||
"end": 67, | ||
"modifierFlagsCache": 0, | ||
"transformFlags": 0, | ||
"escapedText": "see" | ||
}, | ||
"comment": "{@link second link text} and {@link Foo|a foo} as well." | ||
}, | ||
"length": 1, | ||
"pos": 63, | ||
"end": 68, | ||
"hasTrailingComma": false, | ||
"transformFlags": 0 | ||
} | ||
"comment": "{@link first link}\nInside {@link link text} thing" | ||
} |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.