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