overlookmotel 792672ec60
Fix scope of computed method keys (#12812)
* Fix scope of computed method keys

* Test for nested computed keys

* Fix scope.rename with computed method keys

* Optional chaining tests
2021-02-19 02:36:34 +01:00

8 lines
102 B
JavaScript

var _x$y;
let x;
const a = {
[(_x$y = x.y) === null || _x$y === void 0 ? void 0 : _x$y.z]() {}
};