transforms/__testfixtures__/rename-unsafe-lifecycles/variable-within-class-method.input.js (7 lines of code) (raw):
class SomeClass {
someMethod() {
const componentWillMount = true;
let componentWillUpdate = 123;
var componentWillReceiveProps = 'abc';
}
}