TypeScript/tests/baselines/reference/computedPropertyNames18_ES5.js

14 lines
213 B
JavaScript
Raw Normal View History

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