* Fix scope of computed method keys * Test for nested computed keys * Fix scope.rename with computed method keys * Optional chaining tests
5 lines
38 B
JavaScript
5 lines
38 B
JavaScript
let x;
|
|
const a = {
|
|
[x.y?.z]() {}
|
|
};
|