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
Expected the decorator expression '(OtherDecorator())' to be an identifier, but it wasn't. Please report this as a bug.
98 | .filter(m => m.getDecorators().some(
99 | d => {
> 100 | console.log(111, d.getNameNode())
| ^
101 | return false
102 | }
103 | ))
Version: 12.0.0
Reproduction code
test.ts
functionOtherDecorator(): any{}exportclassFoo{// Here is probably a more complex expression, wrapped in parentheses
@(OtherDecorator())asyncbar(): Promise<string[]>{return[]}}
Version: 12.0.0
Reproduction code
test.ts
The text was updated successfully, but these errors were encountered: