TypeScript/tests/baselines/reference/computedPropertyNames10_ES5.types
2015-04-15 16:44:20 -07:00

55 lines
915 B
Plaintext

=== tests/cases/conformance/es6/computedProperties/computedPropertyNames10_ES5.ts ===
var s: string;
>s : string
var n: number;
>n : number
var a: any;
>a : any
var v = {
>v : {}
>{ [s]() { }, [n]() { }, [s + s]() { }, [s + n]() { }, [+s]() { }, [""]() { }, [0]() { }, [a]() { }, [<any>true]() { }, [`hello bye`]() { }, [`hello ${a} bye`]() { }} : {}
[s]() { },
>s : string
[n]() { },
>n : number
[s + s]() { },
>s + s : string
>s : string
>s : string
[s + n]() { },
>s + n : string
>s : string
>n : number
[+s]() { },
>+s : number
>s : string
[""]() { },
>"" : string
[0]() { },
>0 : number
[a]() { },
>a : any
[<any>true]() { },
><any>true : any
>true : boolean
[`hello bye`]() { },
>`hello bye` : string
[`hello ${a} bye`]() { }
>`hello ${a} bye` : string
>a : any
}