Files
babel/packages/babel-plugin-proposal-class-properties/test/fixtures/loose/instance-computed/input.js
2018-03-24 16:22:20 +05:30

14 lines
181 B
JavaScript

function test(x) {
class F {
[x] = 1;
constructor() {}
}
x = 'deadbeef';
expect(new F().foo).toBe(1);
x = 'wrong';
expect(new F().foo).toBe(1);
}
test('foo');