We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5f41cd commit e5285ddCopy full SHA for e5285dd
transforms/helpers/eo-prop/private/function-expression.ts
@@ -51,6 +51,8 @@ export default class EOFunctionExpressionProp extends AbstractEOProp<
51
body: this.value.body,
52
comments: this.comments,
53
decorators: this.existingDecorators,
54
+ generator: this.value.generator ?? false,
55
+ async: this.value.async ?? false,
56
}),
57
this.replaceSuperWithUndefined
58
);
transforms/helpers/eo-prop/private/method.ts
@@ -54,6 +54,8 @@ export default class EOMethod extends AbstractEOProp<
body: this.body,
59
60
61
0 commit comments