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

26 lines
1.1 KiB
Plaintext

=== tests/cases/conformance/es6/computedProperties/computedPropertyNamesContextualType3_ES5.ts ===
interface I {
>I : Symbol(I, Decl(computedPropertyNamesContextualType3_ES5.ts, 0, 0))
[s: string]: (x: string) => number;
>s : Symbol(s, Decl(computedPropertyNamesContextualType3_ES5.ts, 1, 5))
>x : Symbol(x, Decl(computedPropertyNamesContextualType3_ES5.ts, 1, 18))
}
var o: I = {
>o : Symbol(o, Decl(computedPropertyNamesContextualType3_ES5.ts, 4, 3))
>I : Symbol(I, Decl(computedPropertyNamesContextualType3_ES5.ts, 0, 0))
[+"foo"](y) { return y.length; },
>y : Symbol(y, Decl(computedPropertyNamesContextualType3_ES5.ts, 5, 13))
>y.length : Symbol(String.length, Decl(lib.d.ts, 414, 19))
>y : Symbol(y, Decl(computedPropertyNamesContextualType3_ES5.ts, 5, 13))
>length : Symbol(String.length, Decl(lib.d.ts, 414, 19))
[+"bar"]: y => y.length
>y : Symbol(y, Decl(computedPropertyNamesContextualType3_ES5.ts, 6, 13))
>y.length : Symbol(String.length, Decl(lib.d.ts, 414, 19))
>y : Symbol(y, Decl(computedPropertyNamesContextualType3_ES5.ts, 6, 13))
>length : Symbol(String.length, Decl(lib.d.ts, 414, 19))
}