8000 Refactor jsdoc types to typescript by sandersn · Pull Request #18747 · microsoft/TypeScript · GitHub
[go: up one dir, main page]

Skip to content

Refactor jsdoc types to typescript #18747

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 19 commits into from
Oct 13, 2017
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
6d218e2
Refactor JSDoc types to Typescript types
sandersn Sep 25, 2017
8996d11
Test:refactor JSDoc types to Typescript types
sandersn Sep 25, 2017
13b37a4
Change refactoring name and description
sandersn Sep 26, 2017
96b8093
Move filenames to match refactoring rename
sandersn Sep 26, 2017
fc933d7
Transform jsdoc types in the refactor, not emitter
sandersn Sep 26, 2017
724a813
Merge branch 'master' into refactor-jsdoc-types-to-typescript
sandersn Sep 28, 2017
d797b4a
Correctly transform jsdoc parameter types
sandersn Sep 28, 2017
6831e65
Merge branch 'master' into refactor-jsdoc-types-to-typescript
sandersn Oct 2, 2017
4930cad
Convert all JSDoc parameters and return types of functions
sandersn Oct 11, 2017
1a1c1f9
Add and update jsdoc annotation refactoring tests
sandersn Oct 11, 2017
d7424b0
Merge branch 'master' into refactor-jsdoc-types-to-typescript
sandersn Oct 11, 2017
260d37e
Merge branch 'master' into refactor-jsdoc-types-to-typescript
mhegazy Oct 12, 2017
123347d
Convert @template tag to type parameters in refactor
sandersn Oct 12, 2017
b440d75
Test refactor of JSDoc @template tag
sandersn Oct 12, 2017
c2c18a8
Merge branch 'master' into refactor-jsdoc-types-to-typescript
sandersn Oct 12, 2017
< 8000 a href="/microsoft/TypeScript/pull/18747/commits/f35764d4ecf69e5c6be292fa7018fdc6f27f70c9" class="select-menu-item " role="menuitem" data-commit="f35764d4ecf69e5c6be292fa7018fdc6f27f70c9" data-parent-commit="c2c18a8d0698660669502a3c64aef71c4cddc3da">
f35764d
Fix duplicated JSDoc comments
sandersn Oct 12, 2017
c83daa6
JSDoc->type refactor:Renames+improve never handling
sandersn Oct 13, 2017
84e3507
return more Debug.fails instead of undefined.
sandersn Oct 13, 2017
4cf06bb
Fix spacing lint
sandersn Oct 13, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'master' into refactor-jsdoc-types-to-typescript
  • Loading branch information
sandersn committed Oct 2, 2017
commit 6831e65235fa388fa704948e4a24cbe457fb6b6f
14 changes: 10 additions & 4 deletions src/compiler/diagnosticMessages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3718,22 +3718,28 @@
"category": "Message",
"code": 95002
},

"Extract symbol": {
"category": "Message",
"code": 95003
},

"Extract to {0}": {
"category": "Message",
"code": 95004
},
"Annotate with type from JSDoc": {
"Extract function": {
"category": "Message",
"code": 95005
},
"Annotate with return type from JSDoc": {
"Extract constant": {
"category": "Message",
"code": 95006
},
"Annotate with type from JSDoc": {
"category": "Message",
"code": 95007
},
"Annotate with return type from JSDoc": {
"category": "Message",
"code": 95008
}
}
You are viewing a condensed version of this merge commit. You can view the full changes here.
0