Files
babel/packages/babel-traverse/test/fixtures/comments/attachment/remove.js

13 lines
214 B
JavaScript

module.exports = function() {
return {
visitor: {
Identifier(path) {
const node = path.node;
if (node.name === "willRemove") {
path.remove();
}
},
},
};
};