oxc/tasks/coverage/misc/pass/oxc-3262.js
Boshen c4ccf9f4d8 fix(parser): parse DecoratorCallExpression when Arguments contains MemberExpression (#3265)
closes #3261
closes #3262

```
DecoratorCallExpression[Yield, Await] :
  DecoratorMemberExpression[?Yield, ?Await] Arguments[?Yield, ?Await]
```
2024-05-14 03:18:41 +00:00

4 lines
59 B
JavaScript

class Foo {
@Bar({ x: Map['String'] })
quaz() {}
}