Files
babel/packages/babel-plugin-transform-es2015-parameters/test/fixtures/regression/4209/actual.js
Justin Ridgewell 73fba55c9f Requeueing sometimes has wrong scope (#6351)
This prevents a requeued path from inheriting a totally wrong scope later on. I can't find exactly where this is happening, but either way a path should only inherit scope from it's ancestors.
2017-10-02 15:26:10 -04:00

11 lines
136 B
JavaScript

import { copy } from './copyPaste';
class Thing {
handleCopySomething() {
copy();
}
completelyUnrelated(copy = 123) {
}
}