in transforms/manual-bind-to-arrow.js [49:59]
function createArrowProperty(prop) {
return withComments(
j.classProperty(
j.identifier(prop.key.name),
createArrowFunctionExpression(prop.value),
null,
false
),
prop
);
}