* Make labels on break and continue statements not referenced * Add test for imports and labels with the same name
10 lines
137 B
JavaScript
10 lines
137 B
JavaScript
module.exports = function() {
|
|
return {
|
|
visitor: {
|
|
Function(path) {
|
|
path.scope.rename("a", "b");
|
|
}
|
|
}
|
|
};
|
|
}
|