TypeScript/tests/baselines/reference/computedPropertyNames9.js
2015-02-06 18:45:09 -08:00

20 lines
326 B
JavaScript

//// [computedPropertyNames9.ts]
function f(s: string): string;
function f(n: number): number;
function f<T>(x: T): T;
function f(x): any { }
var v = {
[f("")]: 0,
[f(0)]: 0,
[f(true)]: 0
}
//// [computedPropertyNames9.js]
function f(x) { }
var v = {
[f("")]: 0,
[f(0)]: 0,
[f(true)]: 0
};