Skip to content

Commit a2588b8

Browse files
committed
Update deprecation comments
1 parent a63f47c commit a2588b8

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

src/deprecatedCompat/4.8/mergeDecoratorsAndModifiers.ts

+6-7
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
namespace ts {
77
export interface Node {
88
/**
9-
* @deprecated `decorators` has been merged with `modifiers` on the declarations that support decorators.
10-
* To test whether a `Node` can legally have decorators, use the `ts.canHaveDecorators()` function. To read the
11-
* decorators of a `Node` that can legally have decorators, use the `ts.getDecorators()` function.
9+
* @deprecated `decorators` has been removed from `Node` and merged with `modifiers` on the `Node` subtypes that support them.
10+
* Use `ts.canHaveDecorators()` to test whether a `Node` can have decorators.
11+
* Use `ts.getDecorators()` to get the decorators of a `Node`.
1212
*
1313
* For example:
1414
* ```ts
@@ -18,9 +18,9 @@ namespace ts {
1818
readonly decorators: never;
1919

2020
/**
21-
* @deprecated `modifiers` has been removed from `Node` and moved to the specific `Node` subtypes that support them.
22-
* To test whether a `Node` can legally have modifiers, use the `ts.canHaveModifiers()` function. To read the modifiers
23-
* of a `Node` that can legally have modifiers, use the `ts.getModifiers()` function.
21+
* @deprecated `modifiers` has been removed from `Node` and moved to the `Node` subtypes that support them.
22+
* Use `ts.canHaveModifiers()` to test whether a `Node` can have modifiers.
23+
* Use `ts.getModifiers()` to get the modifiers of a `Node`.
2424
*
2525
* For example:
2626
* ```ts
@@ -212,7 +212,6 @@ namespace ts {
212212
* @deprecated Decorators are no longer supported for this function. Callers should use an overload that does not accept a `decorators` parameter.
213213
*/
214214
updateExportDeclaration(node: ExportDeclaration, decorators: readonly Decorator[] | undefined, modifiers: readonly Modifier[] | undefined, isTypeOnly: boolean, exportClause: NamedExportBindings | undefined, moduleSpecifier: Expression | undefined, assertClause: AssertClause | undefined): ExportDeclaration;
215-
216215
}
217216

218217
const MUST_MERGE: DeprecationOptions = { since: "4.8", warnAfter: "4.9.0-0", message: "Decorators have been combined with modifiers. Callers should switch to an overload that does not accept a 'decorators' parameter." };

0 commit comments

Comments
 (0)