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 class-method-parameter-decorators #303

Merged
merged 3 commits into from Apr 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
32 changes: 32 additions & 0 deletions experimental/class-method-parameter-decorators.md
@@ -0,0 +1,32 @@
# [Decorators for Class Method and Constructor Parameters][proposal-class-method-parameter-decorators]

## Decorator

```js
interface Decorator <: Node {
type: "Decorator";
expression: Expression;
}
```

## FunctionExpression

```js
extend interface FunctionExpression {
params: [ Pattern | Parameter ];
}
```

If `params` contains a `Parameter` node, its parent must be a `MethodDefinition`.

## Parameter

```js
interface Parameter <: Node {
type: "Parameter";
parameter: Pattern;
decorators: [ Decorator ];
}
```

[proposal-class-method-parameter-decorators]: https://github.com/tc39/proposal-class-method-parameter-decorators