TypeScript/tests/baselines/reference/computedPropertyNames18.js

14 lines
205 B
JavaScript
Raw Normal View History

//// [computedPropertyNames18.ts]
function foo() {
var obj = {
[this.bar]: 0
}
}
//// [computedPropertyNames18.js]
function foo() {
var obj = {
[this.bar]: 0
};
}