* Fix scope of computed method keys * Test for nested computed keys * Fix scope.rename with computed method keys * Optional chaining tests
8 lines
82 B
JavaScript
8 lines
82 B
JavaScript
var _x$y;
|
|
|
|
let x;
|
|
const a = {
|
|
[(_x$y = x.y) == null ? void 0 : _x$y.z]() {}
|
|
|
|
};
|