| 631 | }; |
| 632 | |
| 633 | const createArrowProperty = prop => |
| 634 | withComments(j.classProperty( |
| 635 | j.identifier(prop.key.name), |
| 636 | createArrowFunctionExpression(prop.value), |
| 637 | null, |
| 638 | false |
| 639 | ), prop); |
| 640 | |
| 641 | const createClassProperty = prop => |
| 642 | withComments(j.classProperty( |
no test coverage detected