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