10 lines
137 B
JavaScript

module.exports = function() {
return {
visitor: {
Function(path) {
path.scope.rename("x", "a");
}
}
};
}