TypeScript/tests/baselines/reference/computedPropertyNamesContextualType3_ES5.js

18 lines
391 B
TypeScript
Raw Normal View History

//// [computedPropertyNamesContextualType3_ES5.ts]
interface I {
[s: string]: (x: string) => number;
}
var o: I = {
[+"foo"](y) { return y.length; },
[+"bar"]: y => y.length
}
//// [computedPropertyNamesContextualType3_ES5.js]
var o = (_a = {},
_a[+"foo"] = function (y) { return y.length; },
_a[+"bar"] = function (y) { return y.length; },
_a
);
var _a;