* Fix scope of computed method keys * Test for nested computed keys * Fix scope.rename with computed method keys * Optional chaining tests
9 lines
97 B
JavaScript
9 lines
97 B
JavaScript
let a = "outside";
|
|
|
|
const obj = {
|
|
[(() => a)()]() {
|
|
let a = "inside";
|
|
return a;
|
|
}
|
|
};
|