Skip to content
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

Add deprecated related feature #38523

Merged
merged 45 commits into from
Jun 19, 2020
Merged
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
bb09d38
Add deprecated related feature
Kingwl May 13, 2020
5a8da16
Add more support
Kingwl May 13, 2020
2deadaa
fix navtree
Kingwl May 13, 2020
9847ffb
Add identifier check
Kingwl May 14, 2020
06c8d22
Add more deprecated
Kingwl May 14, 2020
03d1ffe
fix crash
Kingwl May 14, 2020
30cea12
fix more crash
Kingwl May 14, 2020
13bdb75
fix crash
Kingwl May 14, 2020
1b3e477
improve diagnostic
Kingwl May 16, 2020
f794e11
avoid new tag
Kingwl May 17, 2020
9d27ab3
avoid tags
Kingwl May 17, 2020
36f4226
accept baseline
Kingwl May 17, 2020
6df251f
Check deprecated in binder
Kingwl May 18, 2020
1f15136
fix baseline
Kingwl May 18, 2020
d856ad5
fix jsdoc cache
Kingwl May 18, 2020
9c577e2
fix incorrect fix
Kingwl May 18, 2020
8abcf7e
Avoid useless changes
Kingwl May 18, 2020
e7be909
Accept baseline
Kingwl May 20, 2020
e796f20
Add tests
Kingwl May 26, 2020
7fcd23f
Merge branch 'master' into deprecated_support
Kingwl May 26, 2020
70b0445
fix perf
Kingwl May 28, 2020
8d5bcc0
fix public api
Kingwl May 28, 2020
0022d54
Merge branch 'master' into deprecated_support
Kingwl Jun 12, 2020
3c75d8e
Merge branch 'deprecated_support' of github.com:Kingwl/TypeScript int…
Kingwl Jun 12, 2020
b0311e3
Adjust deprecated mark on qualifed name
Kingwl Jun 12, 2020
182ed1c
Revolve alias symbol
Kingwl Jun 12, 2020
8b2f1f8
Use modifier flags insted of symbol props
Kingwl Jun 13, 2020
ed18e4a
Fix modifier flag resolve
Kingwl Jun 13, 2020
69ddd5f
Make lint happy
Kingwl Jun 13, 2020
8fdceab
Fix crash
Kingwl Jun 13, 2020
a30a430
fix crash
Kingwl Jun 13, 2020
dc97c66
Merge branch 'master' into deprecated_support
Kingwl Jun 13, 2020
7e18beb
Add cached utils function
Kingwl Jun 15, 2020
22410c1
Accept baseline
Kingwl Jun 15, 2020
b1eb8e0
Add more tests
Kingwl Jun 15, 2020
c89ee76
try pinning octokit again
sandersn Jun 15, 2020
1e00d36
Avoid tests
Kingwl Jun 15, 2020
f3e425c
Use utils some
Kingwl Jun 15, 2020
30fe85c
Merge branch 'master' into deprecated_support
Kingwl Jun 17, 2020
1472263
Deprecated perf test (#3)
Kingwl Jun 18, 2020
2d189dc
use symbol flag
Kingwl Jun 18, 2020
b8142f9
Merge branch 'master' into deprecated_support
Kingwl Jun 18, 2020
7714dbf
Merge branch 'master' into deprecated_support
sandersn Jun 18, 2020
6b30216
set @octokit/rest back to latest
sandersn Jun 18, 2020
6434447
fix trailing spacel int
sandersn Jun 19, 2020
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
fix trailing spacel int
sandersn committed Jun 19, 2020
commit 6434447c678c8779badc6157b5d8ab0c217e0c75
2 changes: 1 addition & 1 deletion src/compiler/types.ts
Original file line number Diff line number Diff line change
@@ -4511,7 +4511,7 @@ namespace ts {
Transient = 1 << 25, // Transient symbol (created during type check)
Assignment = 1 << 26, // Assignment treated as declaration (eg `this.prop = 1`)
ModuleExports = 1 << 27, // Symbol for CommonJS `module` of `module.exports`
Deprecated = 1 << 28, // Symbol has Deprecated declaration tag (eg `@deprecated`)
Deprecated = 1 << 28, // Symbol has Deprecated declaration tag (eg `@deprecated`)
/* @internal */
All = FunctionScopedVariable | BlockScopedVariable | Property | EnumMember | Function | Class | Interface | ConstEnum | RegularEnum | ValueModule | NamespaceModule | TypeLiteral
| ObjectLiteral | Method | Constructor | GetAccessor | SetAccessor | Signature | TypeParameter | TypeAlias | ExportValue | Alias | Prototype | ExportStar | Optional | Transient | Deprecated,