You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update deprecated check to consider new annotations (#4108)
Work towards #4107
With the new `@Deprecated` annotations, we don't want to consider _any_
`@Deprecated` annotatation as announcing "this thing is deprecated!" and
cross it out. Instead, we should only consider `@deprecated` (the
constant) and `@Deprecated()` (the unnamed constructor) as announcing
such a thing.
All this change does is fix `isDeprecated` to understand that
`@Deprecated.extend` etc does not mark the element as deprecated.
There should be future changes where we _do_ indicate something about a
specific deprecation, like `@Deprecated.extend`.
0 commit comments