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

30 lines
1.3 KiB
Plaintext

=== tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType1_ES6.ts ===
interface I {
>I : Symbol(I, Decl(computedPropertyNamesContextualType1_ES6.ts, 0, 0))
[s: string]: (x: string) => number;
>s : Symbol(s, Decl(computedPropertyNamesContextualType1_ES6.ts, 1, 5))
>x : Symbol(x, Decl(computedPropertyNamesContextualType1_ES6.ts, 1, 18))
[s: number]: (x: any) => number; // Doesn't get hit
>s : Symbol(s, Decl(computedPropertyNamesContextualType1_ES6.ts, 2, 5))
>x : Symbol(x, Decl(computedPropertyNamesContextualType1_ES6.ts, 2, 18))
}
var o: I = {
>o : Symbol(o, Decl(computedPropertyNamesContextualType1_ES6.ts, 5, 3))
>I : Symbol(I, Decl(computedPropertyNamesContextualType1_ES6.ts, 0, 0))
["" + 0](y) { return y.length; },
>y : Symbol(y, Decl(computedPropertyNamesContextualType1_ES6.ts, 6, 13))
>y.length : Symbol(String.length, Decl(lib.d.ts, 414, 19))
>y : Symbol(y, Decl(computedPropertyNamesContextualType1_ES6.ts, 6, 13))
>length : Symbol(String.length, Decl(lib.d.ts, 414, 19))
["" + 1]: y => y.length
>y : Symbol(y, Decl(computedPropertyNamesContextualType1_ES6.ts, 7, 13))
>y.length : Symbol(String.length, Decl(lib.d.ts, 414, 19))
>y : Symbol(y, Decl(computedPropertyNamesContextualType1_ES6.ts, 7, 13))
>length : Symbol(String.length, Decl(lib.d.ts, 414, 19))
}