TypeScript/tests/baselines/reference/objectTypeWithStringNamedNumericProperty.types

536 lines
48 KiB
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/conformance/types/members/objectTypeWithStringNamedNumericProperty.ts ===
// string named numeric properties are legal and distinct when indexed by string values
// indexed numerically the value is converted to a number
// no errors expected below
class C {
2015-04-13 23:01:57 +02:00
>C : C, Symbol(C, Decl(objectTypeWithStringNamedNumericProperty.ts, 0, 0))
2014-08-15 23:33:16 +02:00
"0.1": void;
".1": Object;
2015-04-13 23:01:57 +02:00
>Object : Object, Symbol(Object, Decl(lib.d.ts, 92, 1), Decl(lib.d.ts, 223, 11))
2014-08-15 23:33:16 +02:00
"1": number;
"1.": string;
"1..": boolean;
"1.0": Date;
2015-04-13 23:01:57 +02:00
>Date : Date, Symbol(Date, Decl(lib.d.ts, 633, 23), Decl(lib.d.ts, 815, 11))
2014-08-15 23:33:16 +02:00
"-1.0": RegExp;
2015-04-13 23:01:57 +02:00
>RegExp : RegExp, Symbol(RegExp, Decl(lib.d.ts, 825, 1), Decl(lib.d.ts, 876, 11))
2014-08-15 23:33:16 +02:00
"-1": Date;
2015-04-13 23:01:57 +02:00
>Date : Date, Symbol(Date, Decl(lib.d.ts, 633, 23), Decl(lib.d.ts, 815, 11))
2014-08-15 23:33:16 +02:00
}
var c: C;
2015-04-13 23:01:57 +02:00
>c : C, Symbol(c, Decl(objectTypeWithStringNamedNumericProperty.ts, 16, 3))
>C : C, Symbol(C, Decl(objectTypeWithStringNamedNumericProperty.ts, 0, 0))
2014-08-15 23:33:16 +02:00
var r1 = c['0.1'];
2015-04-13 23:01:57 +02:00
>r1 : void, Symbol(r1, Decl(objectTypeWithStringNamedNumericProperty.ts, 17, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 48, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 78, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 108, 3))
2014-08-15 23:33:16 +02:00
>c['0.1'] : void
2015-04-13 23:01:57 +02:00
>c : C, Symbol(c, Decl(objectTypeWithStringNamedNumericProperty.ts, 16, 3))
>'0.1' : string, Symbol(C."0.1", Decl(objectTypeWithStringNamedNumericProperty.ts, 5, 9))
2014-08-15 23:33:16 +02:00
var r2 = c['.1'];
2015-04-13 23:01:57 +02:00
>r2 : Object, Symbol(r2, Decl(objectTypeWithStringNamedNumericProperty.ts, 18, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 49, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 79, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 109, 3))
2014-08-15 23:33:16 +02:00
>c['.1'] : Object
2015-04-13 23:01:57 +02:00
>c : C, Symbol(c, Decl(objectTypeWithStringNamedNumericProperty.ts, 16, 3))
>'.1' : string, Symbol(C.".1", Decl(objectTypeWithStringNamedNumericProperty.ts, 6, 16))
2014-08-15 23:33:16 +02:00
var r3 = c['1'];
2015-04-13 23:01:57 +02:00
>r3 : number, Symbol(r3, Decl(objectTypeWithStringNamedNumericProperty.ts, 19, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 20, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 22, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 25, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 50, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 51, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 53, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 56, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 80, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 81, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 83, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 86, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 110, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 111, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 113, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 116, 3))
2014-08-15 23:33:16 +02:00
>c['1'] : number
2015-04-13 23:01:57 +02:00
>c : C, Symbol(c, Decl(objectTypeWithStringNamedNumericProperty.ts, 16, 3))
>'1' : string, Symbol(C."1", Decl(objectTypeWithStringNamedNumericProperty.ts, 7, 17))
2014-08-15 23:33:16 +02:00
var r3 = c[1];
2015-04-13 23:01:57 +02:00
>r3 : number, Symbol(r3, Decl(objectTypeWithStringNamedNumericProperty.ts, 19, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 20, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 22, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 25, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 50, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 51, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 53, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 56, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 80, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 81, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 83, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 86, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 110, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 111, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 113, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 116, 3))
2014-08-15 23:33:16 +02:00
>c[1] : number
2015-04-13 23:01:57 +02:00
>c : C, Symbol(c, Decl(objectTypeWithStringNamedNumericProperty.ts, 16, 3))
>1 : number, Symbol(C."1", Decl(objectTypeWithStringNamedNumericProperty.ts, 7, 17))
2014-08-15 23:33:16 +02:00
var r4 = c['1.'];
2015-04-13 23:01:57 +02:00
>r4 : string, Symbol(r4, Decl(objectTypeWithStringNamedNumericProperty.ts, 21, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 52, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 82, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 112, 3))
2014-08-15 23:33:16 +02:00
>c['1.'] : string
2015-04-13 23:01:57 +02:00
>c : C, Symbol(c, Decl(objectTypeWithStringNamedNumericProperty.ts, 16, 3))
>'1.' : string, Symbol(C."1.", Decl(objectTypeWithStringNamedNumericProperty.ts, 8, 16))
2014-08-15 23:33:16 +02:00
var r3 = c[1.]; // same as indexing by 1 when done numerically
2015-04-13 23:01:57 +02:00
>r3 : number, Symbol(r3, Decl(objectTypeWithStringNamedNumericProperty.ts, 19, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 20, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 22, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 25, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 50, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 51, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 53, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 56, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 80, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 81, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 83, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 86, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 110, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 111, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 113, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 116, 3))
2014-08-15 23:33:16 +02:00
>c[1.] : number
2015-04-13 23:01:57 +02:00
>c : C, Symbol(c, Decl(objectTypeWithStringNamedNumericProperty.ts, 16, 3))
>1. : number, Symbol(C."1", Decl(objectTypeWithStringNamedNumericProperty.ts, 7, 17))
2014-08-15 23:33:16 +02:00
var r5 = c['1..'];
2015-04-13 23:01:57 +02:00
>r5 : boolean, Symbol(r5, Decl(objectTypeWithStringNamedNumericProperty.ts, 23, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 54, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 84, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 114, 3))
2014-08-15 23:33:16 +02:00
>c['1..'] : boolean
2015-04-13 23:01:57 +02:00
>c : C, Symbol(c, Decl(objectTypeWithStringNamedNumericProperty.ts, 16, 3))
>'1..' : string, Symbol(C."1..", Decl(objectTypeWithStringNamedNumericProperty.ts, 9, 17))
2014-08-15 23:33:16 +02:00
var r6 = c['1.0'];
2015-04-13 23:01:57 +02:00
>r6 : Date, Symbol(r6, Decl(objectTypeWithStringNamedNumericProperty.ts, 24, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 55, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 85, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 115, 3))
2014-08-15 23:33:16 +02:00
>c['1.0'] : Date
2015-04-13 23:01:57 +02:00
>c : C, Symbol(c, Decl(objectTypeWithStringNamedNumericProperty.ts, 16, 3))
>'1.0' : string, Symbol(C."1.0", Decl(objectTypeWithStringNamedNumericProperty.ts, 10, 19))
2014-08-15 23:33:16 +02:00
var r3 = c[1.0]; // same as indexing by 1 when done numerically
2015-04-13 23:01:57 +02:00
>r3 : number, Symbol(r3, Decl(objectTypeWithStringNamedNumericProperty.ts, 19, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 20, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 22, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 25, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 50, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 51, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 53, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 56, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 80, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 81, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 83, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 86, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 110, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 111, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 113, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 116, 3))
2014-08-15 23:33:16 +02:00
>c[1.0] : number
2015-04-13 23:01:57 +02:00
>c : C, Symbol(c, Decl(objectTypeWithStringNamedNumericProperty.ts, 16, 3))
>1.0 : number, Symbol(C."1", Decl(objectTypeWithStringNamedNumericProperty.ts, 7, 17))
2014-08-15 23:33:16 +02:00
// BUG 823822
var r7 = i[-1];
2015-04-13 23:01:57 +02:00
>r7 : any, Symbol(r7, Decl(objectTypeWithStringNamedNumericProperty.ts, 27, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 28, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 58, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 59, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 88, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 89, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 118, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 119, 3))
2014-08-15 23:33:16 +02:00
>i[-1] : any
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
2014-08-15 23:33:16 +02:00
>-1 : number
2015-04-13 21:36:11 +02:00
>1 : number
2014-08-15 23:33:16 +02:00
var r7 = i[-1.0];
2015-04-13 23:01:57 +02:00
>r7 : any, Symbol(r7, Decl(objectTypeWithStringNamedNumericProperty.ts, 27, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 28, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 58, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 59, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 88, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 89, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 118, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 119, 3))
2014-08-15 23:33:16 +02:00
>i[-1.0] : any
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
2014-08-15 23:33:16 +02:00
>-1.0 : number
2015-04-13 21:36:11 +02:00
>1.0 : number
2014-08-15 23:33:16 +02:00
var r8 = i["-1.0"];
2015-04-13 23:01:57 +02:00
>r8 : RegExp, Symbol(r8, Decl(objectTypeWithStringNamedNumericProperty.ts, 29, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 60, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 90, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 120, 3))
2014-08-15 23:33:16 +02:00
>i["-1.0"] : RegExp
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
>"-1.0" : string, Symbol(I."-1.0", Decl(objectTypeWithStringNamedNumericProperty.ts, 42, 16))
2014-08-15 23:33:16 +02:00
var r9 = i["-1"];
2015-04-13 23:01:57 +02:00
>r9 : Date, Symbol(r9, Decl(objectTypeWithStringNamedNumericProperty.ts, 30, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 61, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 91, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 121, 3))
2014-08-15 23:33:16 +02:00
>i["-1"] : Date
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
>"-1" : string, Symbol(I."-1", Decl(objectTypeWithStringNamedNumericProperty.ts, 43, 19))
2014-08-15 23:33:16 +02:00
var r10 = i[0x1]
2015-04-13 23:01:57 +02:00
>r10 : number, Symbol(r10, Decl(objectTypeWithStringNamedNumericProperty.ts, 31, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 62, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 92, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 122, 3))
2014-08-15 23:33:16 +02:00
>i[0x1] : number
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
>0x1 : number, Symbol(I."1", Decl(objectTypeWithStringNamedNumericProperty.ts, 38, 17))
2014-08-15 23:33:16 +02:00
var r11 = i[-0x1]
2015-04-13 23:01:57 +02:00
>r11 : any, Symbol(r11, Decl(objectTypeWithStringNamedNumericProperty.ts, 32, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 63, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 93, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 123, 3))
2014-08-15 23:33:16 +02:00
>i[-0x1] : any
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
2014-08-15 23:33:16 +02:00
>-0x1 : number
2015-04-13 21:36:11 +02:00
>0x1 : number
2014-08-15 23:33:16 +02:00
var r12 = i[01]
2015-04-13 23:01:57 +02:00
>r12 : number, Symbol(r12, Decl(objectTypeWithStringNamedNumericProperty.ts, 33, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 64, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 94, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 124, 3))
2014-08-15 23:33:16 +02:00
>i[01] : number
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
>01 : number, Symbol(I."1", Decl(objectTypeWithStringNamedNumericProperty.ts, 38, 17))
2014-08-15 23:33:16 +02:00
var r13 = i[-01]
2015-04-13 23:01:57 +02:00
>r13 : any, Symbol(r13, Decl(objectTypeWithStringNamedNumericProperty.ts, 34, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 65, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 95, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 125, 3))
2014-08-15 23:33:16 +02:00
>i[-01] : any
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
2014-08-15 23:33:16 +02:00
>-01 : number
2015-04-13 21:36:11 +02:00
>01 : number
2014-08-15 23:33:16 +02:00
interface I {
2015-04-13 23:01:57 +02:00
>I : I, Symbol(I, Decl(objectTypeWithStringNamedNumericProperty.ts, 34, 16))
2014-08-15 23:33:16 +02:00
"0.1": void;
".1": Object;
2015-04-13 23:01:57 +02:00
>Object : Object, Symbol(Object, Decl(lib.d.ts, 92, 1), Decl(lib.d.ts, 223, 11))
2014-08-15 23:33:16 +02:00
"1": number;
"1.": string;
"1..": boolean;
"1.0": Date;
2015-04-13 23:01:57 +02:00
>Date : Date, Symbol(Date, Decl(lib.d.ts, 633, 23), Decl(lib.d.ts, 815, 11))
2014-08-15 23:33:16 +02:00
"-1.0": RegExp;
2015-04-13 23:01:57 +02:00
>RegExp : RegExp, Symbol(RegExp, Decl(lib.d.ts, 825, 1), Decl(lib.d.ts, 876, 11))
2014-08-15 23:33:16 +02:00
"-1": Date;
2015-04-13 23:01:57 +02:00
>Date : Date, Symbol(Date, Decl(lib.d.ts, 633, 23), Decl(lib.d.ts, 815, 11))
2014-08-15 23:33:16 +02:00
}
var i: I;
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
>I : I, Symbol(I, Decl(objectTypeWithStringNamedNumericProperty.ts, 34, 16))
2014-08-15 23:33:16 +02:00
var r1 = i['0.1'];
2015-04-13 23:01:57 +02:00
>r1 : void, Symbol(r1, Decl(objectTypeWithStringNamedNumericProperty.ts, 17, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 48, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 78, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 108, 3))
2014-08-15 23:33:16 +02:00
>i['0.1'] : void
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
>'0.1' : string, Symbol(I."0.1", Decl(objectTypeWithStringNamedNumericProperty.ts, 36, 13))
2014-08-15 23:33:16 +02:00
var r2 = i['.1'];
2015-04-13 23:01:57 +02:00
>r2 : Object, Symbol(r2, Decl(objectTypeWithStringNamedNumericProperty.ts, 18, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 49, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 79, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 109, 3))
2014-08-15 23:33:16 +02:00
>i['.1'] : Object
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
>'.1' : string, Symbol(I.".1", Decl(objectTypeWithStringNamedNumericProperty.ts, 37, 16))
2014-08-15 23:33:16 +02:00
var r3 = i['1'];
2015-04-13 23:01:57 +02:00
>r3 : number, Symbol(r3, Decl(objectTypeWithStringNamedNumericProperty.ts, 19, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 20, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 22, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 25, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 50, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 51, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 53, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 56, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 80, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 81, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 83, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 86, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 110, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 111, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 113, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 116, 3))
2014-08-15 23:33:16 +02:00
>i['1'] : number
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
>'1' : string, Symbol(I."1", Decl(objectTypeWithStringNamedNumericProperty.ts, 38, 17))
2014-08-15 23:33:16 +02:00
var r3 = c[1];
2015-04-13 23:01:57 +02:00
>r3 : number, Symbol(r3, Decl(objectTypeWithStringNamedNumericProperty.ts, 19, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 20, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 22, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 25, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 50, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 51, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 53, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 56, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 80, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 81, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 83, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 86, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 110, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 111, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 113, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 116, 3))
2014-08-15 23:33:16 +02:00
>c[1] : number
2015-04-13 23:01:57 +02:00
>c : C, Symbol(c, Decl(objectTypeWithStringNamedNumericProperty.ts, 16, 3))
>1 : number, Symbol(C."1", Decl(objectTypeWithStringNamedNumericProperty.ts, 7, 17))
2014-08-15 23:33:16 +02:00
var r4 = i['1.'];
2015-04-13 23:01:57 +02:00
>r4 : string, Symbol(r4, Decl(objectTypeWithStringNamedNumericProperty.ts, 21, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 52, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 82, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 112, 3))
2014-08-15 23:33:16 +02:00
>i['1.'] : string
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
>'1.' : string, Symbol(I."1.", Decl(objectTypeWithStringNamedNumericProperty.ts, 39, 16))
2014-08-15 23:33:16 +02:00
var r3 = c[1.]; // same as indexing by 1 when done numerically
2015-04-13 23:01:57 +02:00
>r3 : number, Symbol(r3, Decl(objectTypeWithStringNamedNumericProperty.ts, 19, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 20, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 22, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 25, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 50, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 51, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 53, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 56, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 80, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 81, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 83, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 86, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 110, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 111, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 113, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 116, 3))
2014-08-15 23:33:16 +02:00
>c[1.] : number
2015-04-13 23:01:57 +02:00
>c : C, Symbol(c, Decl(objectTypeWithStringNamedNumericProperty.ts, 16, 3))
>1. : number, Symbol(C."1", Decl(objectTypeWithStringNamedNumericProperty.ts, 7, 17))
2014-08-15 23:33:16 +02:00
var r5 = i['1..'];
2015-04-13 23:01:57 +02:00
>r5 : boolean, Symbol(r5, Decl(objectTypeWithStringNamedNumericProperty.ts, 23, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 54, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 84, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 114, 3))
2014-08-15 23:33:16 +02:00
>i['1..'] : boolean
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
>'1..' : string, Symbol(I."1..", Decl(objectTypeWithStringNamedNumericProperty.ts, 40, 17))
2014-08-15 23:33:16 +02:00
var r6 = i['1.0'];
2015-04-13 23:01:57 +02:00
>r6 : Date, Symbol(r6, Decl(objectTypeWithStringNamedNumericProperty.ts, 24, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 55, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 85, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 115, 3))
2014-08-15 23:33:16 +02:00
>i['1.0'] : Date
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
>'1.0' : string, Symbol(I."1.0", Decl(objectTypeWithStringNamedNumericProperty.ts, 41, 19))
2014-08-15 23:33:16 +02:00
var r3 = c[1.0]; // same as indexing by 1 when done numerically
2015-04-13 23:01:57 +02:00
>r3 : number, Symbol(r3, Decl(objectTypeWithStringNamedNumericProperty.ts, 19, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 20, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 22, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 25, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 50, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 51, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 53, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 56, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 80, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 81, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 83, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 86, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 110, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 111, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 113, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 116, 3))
2014-08-15 23:33:16 +02:00
>c[1.0] : number
2015-04-13 23:01:57 +02:00
>c : C, Symbol(c, Decl(objectTypeWithStringNamedNumericProperty.ts, 16, 3))
>1.0 : number, Symbol(C."1", Decl(objectTypeWithStringNamedNumericProperty.ts, 7, 17))
2014-08-15 23:33:16 +02:00
// BUG 823822
var r7 = i[-1];
2015-04-13 23:01:57 +02:00
>r7 : any, Symbol(r7, Decl(objectTypeWithStringNamedNumericProperty.ts, 27, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 28, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 58, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 59, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 88, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 89, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 118, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 119, 3))
2014-08-15 23:33:16 +02:00
>i[-1] : any
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
2014-08-15 23:33:16 +02:00
>-1 : number
2015-04-13 21:36:11 +02:00
>1 : number
2014-08-15 23:33:16 +02:00
var r7 = i[-1.0];
2015-04-13 23:01:57 +02:00
>r7 : any, Symbol(r7, Decl(objectTypeWithStringNamedNumericProperty.ts, 27, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 28, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 58, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 59, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 88, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 89, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 118, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 119, 3))
2014-08-15 23:33:16 +02:00
>i[-1.0] : any
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
2014-08-15 23:33:16 +02:00
>-1.0 : number
2015-04-13 21:36:11 +02:00
>1.0 : number
2014-08-15 23:33:16 +02:00
var r8 = i["-1.0"];
2015-04-13 23:01:57 +02:00
>r8 : RegExp, Symbol(r8, Decl(objectTypeWithStringNamedNumericProperty.ts, 29, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 60, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 90, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 120, 3))
2014-08-15 23:33:16 +02:00
>i["-1.0"] : RegExp
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
>"-1.0" : string, Symbol(I."-1.0", Decl(objectTypeWithStringNamedNumericProperty.ts, 42, 16))
2014-08-15 23:33:16 +02:00
var r9 = i["-1"];
2015-04-13 23:01:57 +02:00
>r9 : Date, Symbol(r9, Decl(objectTypeWithStringNamedNumericProperty.ts, 30, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 61, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 91, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 121, 3))
2014-08-15 23:33:16 +02:00
>i["-1"] : Date
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
>"-1" : string, Symbol(I."-1", Decl(objectTypeWithStringNamedNumericProperty.ts, 43, 19))
2014-08-15 23:33:16 +02:00
var r10 = i[0x1]
2015-04-13 23:01:57 +02:00
>r10 : number, Symbol(r10, Decl(objectTypeWithStringNamedNumericProperty.ts, 31, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 62, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 92, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 122, 3))
2014-08-15 23:33:16 +02:00
>i[0x1] : number
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
>0x1 : number, Symbol(I."1", Decl(objectTypeWithStringNamedNumericProperty.ts, 38, 17))
2014-08-15 23:33:16 +02:00
var r11 = i[-0x1]
2015-04-13 23:01:57 +02:00
>r11 : any, Symbol(r11, Decl(objectTypeWithStringNamedNumericProperty.ts, 32, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 63, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 93, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 123, 3))
2014-08-15 23:33:16 +02:00
>i[-0x1] : any
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
2014-08-15 23:33:16 +02:00
>-0x1 : number
2015-04-13 21:36:11 +02:00
>0x1 : number
2014-08-15 23:33:16 +02:00
var r12 = i[01]
2015-04-13 23:01:57 +02:00
>r12 : number, Symbol(r12, Decl(objectTypeWithStringNamedNumericProperty.ts, 33, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 64, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 94, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 124, 3))
2014-08-15 23:33:16 +02:00
>i[01] : number
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
>01 : number, Symbol(I."1", Decl(objectTypeWithStringNamedNumericProperty.ts, 38, 17))
2014-08-15 23:33:16 +02:00
var r13 = i[-01]
2015-04-13 23:01:57 +02:00
>r13 : any, Symbol(r13, Decl(objectTypeWithStringNamedNumericProperty.ts, 34, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 65, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 95, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 125, 3))
2014-08-15 23:33:16 +02:00
>i[-01] : any
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
2014-08-15 23:33:16 +02:00
>-01 : number
2015-04-13 21:36:11 +02:00
>01 : number
2014-08-15 23:33:16 +02:00
var a: {
2015-04-13 23:01:57 +02:00
>a : { "1": number; "0.1": void; ".1": Object; "1.": string; "1..": boolean; "1.0": Date; "-1.0": RegExp; "-1": Date; }, Symbol(a, Decl(objectTypeWithStringNamedNumericProperty.ts, 67, 3))
2014-08-15 23:33:16 +02:00
"0.1": void;
".1": Object;
2015-04-13 23:01:57 +02:00
>Object : Object, Symbol(Object, Decl(lib.d.ts, 92, 1), Decl(lib.d.ts, 223, 11))
2014-08-15 23:33:16 +02:00
"1": number;
"1.": string;
"1..": boolean;
"1.0": Date;
2015-04-13 23:01:57 +02:00
>Date : Date, Symbol(Date, Decl(lib.d.ts, 633, 23), Decl(lib.d.ts, 815, 11))
2014-08-15 23:33:16 +02:00
"-1.0": RegExp;
2015-04-13 23:01:57 +02:00
>RegExp : RegExp, Symbol(RegExp, Decl(lib.d.ts, 825, 1), Decl(lib.d.ts, 876, 11))
2014-08-15 23:33:16 +02:00
"-1": Date;
2015-04-13 23:01:57 +02:00
>Date : Date, Symbol(Date, Decl(lib.d.ts, 633, 23), Decl(lib.d.ts, 815, 11))
2014-08-15 23:33:16 +02:00
}
var r1 = a['0.1'];
2015-04-13 23:01:57 +02:00
>r1 : void, Symbol(r1, Decl(objectTypeWithStringNamedNumericProperty.ts, 17, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 48, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 78, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 108, 3))
2014-08-15 23:33:16 +02:00
>a['0.1'] : void
2015-04-13 23:01:57 +02:00
>a : { "1": number; "0.1": void; ".1": Object; "1.": string; "1..": boolean; "1.0": Date; "-1.0": RegExp; "-1": Date; }, Symbol(a, Decl(objectTypeWithStringNamedNumericProperty.ts, 67, 3))
>'0.1' : string, Symbol("0.1", Decl(objectTypeWithStringNamedNumericProperty.ts, 67, 8))
2014-08-15 23:33:16 +02:00
var r2 = a['.1'];
2015-04-13 23:01:57 +02:00
>r2 : Object, Symbol(r2, Decl(objectTypeWithStringNamedNumericProperty.ts, 18, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 49, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 79, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 109, 3))
2014-08-15 23:33:16 +02:00
>a['.1'] : Object
2015-04-13 23:01:57 +02:00
>a : { "1": number; "0.1": void; ".1": Object; "1.": string; "1..": boolean; "1.0": Date; "-1.0": RegExp; "-1": Date; }, Symbol(a, Decl(objectTypeWithStringNamedNumericProperty.ts, 67, 3))
>'.1' : string, Symbol(".1", Decl(objectTypeWithStringNamedNumericProperty.ts, 68, 16))
2014-08-15 23:33:16 +02:00
var r3 = a['1'];
2015-04-13 23:01:57 +02:00
>r3 : number, Symbol(r3, Decl(objectTypeWithStringNamedNumericProperty.ts, 19, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 20, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 22, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 25, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 50, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 51, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 53, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 56, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 80, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 81, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 83, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 86, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 110, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 111, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 113, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 116, 3))
2014-08-15 23:33:16 +02:00
>a['1'] : number
2015-04-13 23:01:57 +02:00
>a : { "1": number; "0.1": void; ".1": Object; "1.": string; "1..": boolean; "1.0": Date; "-1.0": RegExp; "-1": Date; }, Symbol(a, Decl(objectTypeWithStringNamedNumericProperty.ts, 67, 3))
>'1' : string, Symbol("1", Decl(objectTypeWithStringNamedNumericProperty.ts, 69, 17))
2014-08-15 23:33:16 +02:00
var r3 = c[1];
2015-04-13 23:01:57 +02:00
>r3 : number, Symbol(r3, Decl(objectTypeWithStringNamedNumericProperty.ts, 19, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 20, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 22, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 25, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 50, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 51, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 53, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 56, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 80, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 81, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 83, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 86, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 110, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 111, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 113, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 116, 3))
2014-08-15 23:33:16 +02:00
>c[1] : number
2015-04-13 23:01:57 +02:00
>c : C, Symbol(c, Decl(objectTypeWithStringNamedNumericProperty.ts, 16, 3))
>1 : number, Symbol(C."1", Decl(objectTypeWithStringNamedNumericProperty.ts, 7, 17))
2014-08-15 23:33:16 +02:00
var r4 = a['1.'];
2015-04-13 23:01:57 +02:00
>r4 : string, Symbol(r4, Decl(objectTypeWithStringNamedNumericProperty.ts, 21, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 52, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 82, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 112, 3))
2014-08-15 23:33:16 +02:00
>a['1.'] : string
2015-04-13 23:01:57 +02:00
>a : { "1": number; "0.1": void; ".1": Object; "1.": string; "1..": boolean; "1.0": Date; "-1.0": RegExp; "-1": Date; }, Symbol(a, Decl(objectTypeWithStringNamedNumericProperty.ts, 67, 3))
>'1.' : string, Symbol("1.", Decl(objectTypeWithStringNamedNumericProperty.ts, 70, 16))
2014-08-15 23:33:16 +02:00
var r3 = c[1.]; // same as indexing by 1 when done numerically
2015-04-13 23:01:57 +02:00
>r3 : number, Symbol(r3, Decl(objectTypeWithStringNamedNumericProperty.ts, 19, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 20, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 22, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 25, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 50, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 51, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 53, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 56, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 80, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 81, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 83, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 86, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 110, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 111, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 113, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 116, 3))
2014-08-15 23:33:16 +02:00
>c[1.] : number
2015-04-13 23:01:57 +02:00
>c : C, Symbol(c, Decl(objectTypeWithStringNamedNumericProperty.ts, 16, 3))
>1. : number, Symbol(C."1", Decl(objectTypeWithStringNamedNumericProperty.ts, 7, 17))
2014-08-15 23:33:16 +02:00
var r5 = a['1..'];
2015-04-13 23:01:57 +02:00
>r5 : boolean, Symbol(r5, Decl(objectTypeWithStringNamedNumericProperty.ts, 23, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 54, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 84, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 114, 3))
2014-08-15 23:33:16 +02:00
>a['1..'] : boolean
2015-04-13 23:01:57 +02:00
>a : { "1": number; "0.1": void; ".1": Object; "1.": string; "1..": boolean; "1.0": Date; "-1.0": RegExp; "-1": Date; }, Symbol(a, Decl(objectTypeWithStringNamedNumericProperty.ts, 67, 3))
>'1..' : string, Symbol("1..", Decl(objectTypeWithStringNamedNumericProperty.ts, 71, 17))
2014-08-15 23:33:16 +02:00
var r6 = a['1.0'];
2015-04-13 23:01:57 +02:00
>r6 : Date, Symbol(r6, Decl(objectTypeWithStringNamedNumericProperty.ts, 24, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 55, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 85, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 115, 3))
2014-08-15 23:33:16 +02:00
>a['1.0'] : Date
2015-04-13 23:01:57 +02:00
>a : { "1": number; "0.1": void; ".1": Object; "1.": string; "1..": boolean; "1.0": Date; "-1.0": RegExp; "-1": Date; }, Symbol(a, Decl(objectTypeWithStringNamedNumericProperty.ts, 67, 3))
>'1.0' : string, Symbol("1.0", Decl(objectTypeWithStringNamedNumericProperty.ts, 72, 19))
2014-08-15 23:33:16 +02:00
var r3 = c[1.0]; // same as indexing by 1 when done numerically
2015-04-13 23:01:57 +02:00
>r3 : number, Symbol(r3, Decl(objectTypeWithStringNamedNumericProperty.ts, 19, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 20, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 22, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 25, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 50, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 51, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 53, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 56, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 80, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 81, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 83, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 86, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 110, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 111, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 113, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 116, 3))
2014-08-15 23:33:16 +02:00
>c[1.0] : number
2015-04-13 23:01:57 +02:00
>c : C, Symbol(c, Decl(objectTypeWithStringNamedNumericProperty.ts, 16, 3))
>1.0 : number, Symbol(C."1", Decl(objectTypeWithStringNamedNumericProperty.ts, 7, 17))
2014-08-15 23:33:16 +02:00
// BUG 823822
var r7 = i[-1];
2015-04-13 23:01:57 +02:00
>r7 : any, Symbol(r7, Decl(objectTypeWithStringNamedNumericProperty.ts, 27, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 28, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 58, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 59, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 88, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 89, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 118, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 119, 3))
2014-08-15 23:33:16 +02:00
>i[-1] : any
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
2014-08-15 23:33:16 +02:00
>-1 : number
2015-04-13 21:36:11 +02:00
>1 : number
2014-08-15 23:33:16 +02:00
var r7 = i[-1.0];
2015-04-13 23:01:57 +02:00
>r7 : any, Symbol(r7, Decl(objectTypeWithStringNamedNumericProperty.ts, 27, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 28, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 58, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 59, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 88, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 89, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 118, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 119, 3))
2014-08-15 23:33:16 +02:00
>i[-1.0] : any
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
2014-08-15 23:33:16 +02:00
>-1.0 : number
2015-04-13 21:36:11 +02:00
>1.0 : number
2014-08-15 23:33:16 +02:00
var r8 = i["-1.0"];
2015-04-13 23:01:57 +02:00
>r8 : RegExp, Symbol(r8, Decl(objectTypeWithStringNamedNumericProperty.ts, 29, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 60, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 90, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 120, 3))
2014-08-15 23:33:16 +02:00
>i["-1.0"] : RegExp
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
>"-1.0" : string, Symbol(I."-1.0", Decl(objectTypeWithStringNamedNumericProperty.ts, 42, 16))
2014-08-15 23:33:16 +02:00
var r9 = i["-1"];
2015-04-13 23:01:57 +02:00
>r9 : Date, Symbol(r9, Decl(objectTypeWithStringNamedNumericProperty.ts, 30, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 61, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 91, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 121, 3))
2014-08-15 23:33:16 +02:00
>i["-1"] : Date
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
>"-1" : string, Symbol(I."-1", Decl(objectTypeWithStringNamedNumericProperty.ts, 43, 19))
2014-08-15 23:33:16 +02:00
var r10 = i[0x1]
2015-04-13 23:01:57 +02:00
>r10 : number, Symbol(r10, Decl(objectTypeWithStringNamedNumericProperty.ts, 31, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 62, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 92, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 122, 3))
2014-08-15 23:33:16 +02:00
>i[0x1] : number
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
>0x1 : number, Symbol(I."1", Decl(objectTypeWithStringNamedNumericProperty.ts, 38, 17))
2014-08-15 23:33:16 +02:00
var r11 = i[-0x1]
2015-04-13 23:01:57 +02:00
>r11 : any, Symbol(r11, Decl(objectTypeWithStringNamedNumericProperty.ts, 32, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 63, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 93, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 123, 3))
2014-08-15 23:33:16 +02:00
>i[-0x1] : any
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
2014-08-15 23:33:16 +02:00
>-0x1 : number
2015-04-13 21:36:11 +02:00
>0x1 : number
2014-08-15 23:33:16 +02:00
var r12 = i[01]
2015-04-13 23:01:57 +02:00
>r12 : number, Symbol(r12, Decl(objectTypeWithStringNamedNumericProperty.ts, 33, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 64, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 94, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 124, 3))
2014-08-15 23:33:16 +02:00
>i[01] : number
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
>01 : number, Symbol(I."1", Decl(objectTypeWithStringNamedNumericProperty.ts, 38, 17))
2014-08-15 23:33:16 +02:00
var r13 = i[-01]
2015-04-13 23:01:57 +02:00
>r13 : any, Symbol(r13, Decl(objectTypeWithStringNamedNumericProperty.ts, 34, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 65, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 95, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 125, 3))
2014-08-15 23:33:16 +02:00
>i[-01] : any
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
2014-08-15 23:33:16 +02:00
>-01 : number
2015-04-13 21:36:11 +02:00
>01 : number
2014-08-15 23:33:16 +02:00
var b = {
2015-04-13 23:01:57 +02:00
>b : { "1": number; "0.1": void; ".1": Object; "1.": string; "1..": boolean; "1.0": Date; "-1.0": RegExp; "-1": DateConstructor; }, Symbol(b, Decl(objectTypeWithStringNamedNumericProperty.ts, 97, 3))
>{ "0.1": <void>null, ".1": new Object(), "1": 1, "1.": "", "1..": true, "1.0": new Date(), "-1.0": /123/, "-1": Date} : { "1": number; "0.1": void; ".1": Object; "1.": string; "1..": boolean; "1.0": Date; "-1.0": RegExp; "-1": DateConstructor; }
2014-08-15 23:33:16 +02:00
"0.1": <void>null,
><void>null : void
2015-04-13 21:36:11 +02:00
>null : null
2014-08-15 23:33:16 +02:00
".1": new Object(),
>new Object() : Object
2015-04-13 23:01:57 +02:00
>Object : ObjectConstructor, Symbol(Object, Decl(lib.d.ts, 92, 1), Decl(lib.d.ts, 223, 11))
2014-08-15 23:33:16 +02:00
"1": 1,
2015-04-13 21:36:11 +02:00
>1 : number
2014-08-15 23:33:16 +02:00
"1.": "",
2015-04-13 21:36:11 +02:00
>"" : string
2014-08-15 23:33:16 +02:00
"1..": true,
2015-04-13 21:36:11 +02:00
>true : boolean
2014-08-15 23:33:16 +02:00
"1.0": new Date(),
>new Date() : Date
2015-04-13 23:01:57 +02:00
>Date : DateConstructor, Symbol(Date, Decl(lib.d.ts, 633, 23), Decl(lib.d.ts, 815, 11))
2014-08-15 23:33:16 +02:00
"-1.0": /123/,
2015-04-13 21:36:11 +02:00
>/123/ : RegExp
2014-08-15 23:33:16 +02:00
"-1": Date
2015-04-13 23:01:57 +02:00
>Date : DateConstructor, Symbol(Date, Decl(lib.d.ts, 633, 23), Decl(lib.d.ts, 815, 11))
2014-08-15 23:33:16 +02:00
};
var r1 = b['0.1'];
2015-04-13 23:01:57 +02:00
>r1 : void, Symbol(r1, Decl(objectTypeWithStringNamedNumericProperty.ts, 17, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 48, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 78, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 108, 3))
2014-08-15 23:33:16 +02:00
>b['0.1'] : void
2015-04-13 23:01:57 +02:00
>b : { "1": number; "0.1": void; ".1": Object; "1.": string; "1..": boolean; "1.0": Date; "-1.0": RegExp; "-1": DateConstructor; }, Symbol(b, Decl(objectTypeWithStringNamedNumericProperty.ts, 97, 3))
>'0.1' : string, Symbol("0.1", Decl(objectTypeWithStringNamedNumericProperty.ts, 97, 9))
2014-08-15 23:33:16 +02:00
var r2 = b['.1'];
2015-04-13 23:01:57 +02:00
>r2 : Object, Symbol(r2, Decl(objectTypeWithStringNamedNumericProperty.ts, 18, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 49, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 79, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 109, 3))
2014-08-15 23:33:16 +02:00
>b['.1'] : Object
2015-04-13 23:01:57 +02:00
>b : { "1": number; "0.1": void; ".1": Object; "1.": string; "1..": boolean; "1.0": Date; "-1.0": RegExp; "-1": DateConstructor; }, Symbol(b, Decl(objectTypeWithStringNamedNumericProperty.ts, 97, 3))
>'.1' : string, Symbol(".1", Decl(objectTypeWithStringNamedNumericProperty.ts, 98, 22))
2014-08-15 23:33:16 +02:00
var r3 = b['1'];
2015-04-13 23:01:57 +02:00
>r3 : number, Symbol(r3, Decl(objectTypeWithStringNamedNumericProperty.ts, 19, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 20, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 22, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 25, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 50, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 51, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 53, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 56, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 80, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 81, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 83, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 86, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 110, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 111, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 113, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 116, 3))
2014-08-15 23:33:16 +02:00
>b['1'] : number
2015-04-13 23:01:57 +02:00
>b : { "1": number; "0.1": void; ".1": Object; "1.": string; "1..": boolean; "1.0": Date; "-1.0": RegExp; "-1": DateConstructor; }, Symbol(b, Decl(objectTypeWithStringNamedNumericProperty.ts, 97, 3))
>'1' : string, Symbol("1", Decl(objectTypeWithStringNamedNumericProperty.ts, 99, 23))
2014-08-15 23:33:16 +02:00
var r3 = c[1];
2015-04-13 23:01:57 +02:00
>r3 : number, Symbol(r3, Decl(objectTypeWithStringNamedNumericProperty.ts, 19, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 20, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 22, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 25, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 50, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 51, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 53, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 56, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 80, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 81, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 83, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 86, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 110, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 111, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 113, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 116, 3))
2014-08-15 23:33:16 +02:00
>c[1] : number
2015-04-13 23:01:57 +02:00
>c : C, Symbol(c, Decl(objectTypeWithStringNamedNumericProperty.ts, 16, 3))
>1 : number, Symbol(C."1", Decl(objectTypeWithStringNamedNumericProperty.ts, 7, 17))
2014-08-15 23:33:16 +02:00
var r4 = b['1.'];
2015-04-13 23:01:57 +02:00
>r4 : string, Symbol(r4, Decl(objectTypeWithStringNamedNumericProperty.ts, 21, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 52, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 82, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 112, 3))
2014-08-15 23:33:16 +02:00
>b['1.'] : string
2015-04-13 23:01:57 +02:00
>b : { "1": number; "0.1": void; ".1": Object; "1.": string; "1..": boolean; "1.0": Date; "-1.0": RegExp; "-1": DateConstructor; }, Symbol(b, Decl(objectTypeWithStringNamedNumericProperty.ts, 97, 3))
>'1.' : string, Symbol("1.", Decl(objectTypeWithStringNamedNumericProperty.ts, 100, 11))
2014-08-15 23:33:16 +02:00
var r3 = c[1.]; // same as indexing by 1 when done numerically
2015-04-13 23:01:57 +02:00
>r3 : number, Symbol(r3, Decl(objectTypeWithStringNamedNumericProperty.ts, 19, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 20, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 22, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 25, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 50, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 51, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 53, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 56, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 80, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 81, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 83, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 86, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 110, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 111, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 113, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 116, 3))
2014-08-15 23:33:16 +02:00
>c[1.] : number
2015-04-13 23:01:57 +02:00
>c : C, Symbol(c, Decl(objectTypeWithStringNamedNumericProperty.ts, 16, 3))
>1. : number, Symbol(C."1", Decl(objectTypeWithStringNamedNumericProperty.ts, 7, 17))
2014-08-15 23:33:16 +02:00
var r5 = b['1..'];
2015-04-13 23:01:57 +02:00
>r5 : boolean, Symbol(r5, Decl(objectTypeWithStringNamedNumericProperty.ts, 23, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 54, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 84, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 114, 3))
2014-08-15 23:33:16 +02:00
>b['1..'] : boolean
2015-04-13 23:01:57 +02:00
>b : { "1": number; "0.1": void; ".1": Object; "1.": string; "1..": boolean; "1.0": Date; "-1.0": RegExp; "-1": DateConstructor; }, Symbol(b, Decl(objectTypeWithStringNamedNumericProperty.ts, 97, 3))
>'1..' : string, Symbol("1..", Decl(objectTypeWithStringNamedNumericProperty.ts, 101, 13))
2014-08-15 23:33:16 +02:00
var r6 = b['1.0'];
2015-04-13 23:01:57 +02:00
>r6 : Date, Symbol(r6, Decl(objectTypeWithStringNamedNumericProperty.ts, 24, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 55, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 85, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 115, 3))
2014-08-15 23:33:16 +02:00
>b['1.0'] : Date
2015-04-13 23:01:57 +02:00
>b : { "1": number; "0.1": void; ".1": Object; "1.": string; "1..": boolean; "1.0": Date; "-1.0": RegExp; "-1": DateConstructor; }, Symbol(b, Decl(objectTypeWithStringNamedNumericProperty.ts, 97, 3))
>'1.0' : string, Symbol("1.0", Decl(objectTypeWithStringNamedNumericProperty.ts, 102, 16))
2014-08-15 23:33:16 +02:00
var r3 = c[1.0]; // same as indexing by 1 when done numerically
2015-04-13 23:01:57 +02:00
>r3 : number, Symbol(r3, Decl(objectTypeWithStringNamedNumericProperty.ts, 19, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 20, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 22, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 25, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 50, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 51, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 53, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 56, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 80, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 81, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 83, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 86, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 110, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 111, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 113, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 116, 3))
2014-08-15 23:33:16 +02:00
>c[1.0] : number
2015-04-13 23:01:57 +02:00
>c : C, Symbol(c, Decl(objectTypeWithStringNamedNumericProperty.ts, 16, 3))
>1.0 : number, Symbol(C."1", Decl(objectTypeWithStringNamedNumericProperty.ts, 7, 17))
2014-08-15 23:33:16 +02:00
// BUG 823822
var r7 = i[-1];
2015-04-13 23:01:57 +02:00
>r7 : any, Symbol(r7, Decl(objectTypeWithStringNamedNumericProperty.ts, 27, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 28, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 58, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 59, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 88, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 89, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 118, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 119, 3))
2014-08-15 23:33:16 +02:00
>i[-1] : any
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
2014-08-15 23:33:16 +02:00
>-1 : number
2015-04-13 21:36:11 +02:00
>1 : number
2014-08-15 23:33:16 +02:00
var r7 = i[-1.0];
2015-04-13 23:01:57 +02:00
>r7 : any, Symbol(r7, Decl(objectTypeWithStringNamedNumericProperty.ts, 27, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 28, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 58, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 59, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 88, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 89, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 118, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 119, 3))
2014-08-15 23:33:16 +02:00
>i[-1.0] : any
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
2014-08-15 23:33:16 +02:00
>-1.0 : number
2015-04-13 21:36:11 +02:00
>1.0 : number
2014-08-15 23:33:16 +02:00
var r8 = i["-1.0"];
2015-04-13 23:01:57 +02:00
>r8 : RegExp, Symbol(r8, Decl(objectTypeWithStringNamedNumericProperty.ts, 29, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 60, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 90, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 120, 3))
2014-08-15 23:33:16 +02:00
>i["-1.0"] : RegExp
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
>"-1.0" : string, Symbol(I."-1.0", Decl(objectTypeWithStringNamedNumericProperty.ts, 42, 16))
2014-08-15 23:33:16 +02:00
var r9 = i["-1"];
2015-04-13 23:01:57 +02:00
>r9 : Date, Symbol(r9, Decl(objectTypeWithStringNamedNumericProperty.ts, 30, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 61, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 91, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 121, 3))
2014-08-15 23:33:16 +02:00
>i["-1"] : Date
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
>"-1" : string, Symbol(I."-1", Decl(objectTypeWithStringNamedNumericProperty.ts, 43, 19))
2014-08-15 23:33:16 +02:00
var r10 = i[0x1]
2015-04-13 23:01:57 +02:00
>r10 : number, Symbol(r10, Decl(objectTypeWithStringNamedNumericProperty.ts, 31, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 62, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 92, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 122, 3))
2014-08-15 23:33:16 +02:00
>i[0x1] : number
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
>0x1 : number, Symbol(I."1", Decl(objectTypeWithStringNamedNumericProperty.ts, 38, 17))
2014-08-15 23:33:16 +02:00
var r11 = i[-0x1]
2015-04-13 23:01:57 +02:00
>r11 : any, Symbol(r11, Decl(objectTypeWithStringNamedNumericProperty.ts, 32, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 63, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 93, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 123, 3))
2014-08-15 23:33:16 +02:00
>i[-0x1] : any
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
2014-08-15 23:33:16 +02:00
>-0x1 : number
2015-04-13 21:36:11 +02:00
>0x1 : number
2014-08-15 23:33:16 +02:00
var r12 = i[01]
2015-04-13 23:01:57 +02:00
>r12 : number, Symbol(r12, Decl(objectTypeWithStringNamedNumericProperty.ts, 33, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 64, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 94, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 124, 3))
2014-08-15 23:33:16 +02:00
>i[01] : number
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
>01 : number, Symbol(I."1", Decl(objectTypeWithStringNamedNumericProperty.ts, 38, 17))
2014-08-15 23:33:16 +02:00
var r13 = i[-01]
2015-04-13 23:01:57 +02:00
>r13 : any, Symbol(r13, Decl(objectTypeWithStringNamedNumericProperty.ts, 34, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 65, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 95, 3), Decl(objectTypeWithStringNamedNumericProperty.ts, 125, 3))
2014-08-15 23:33:16 +02:00
>i[-01] : any
2015-04-13 23:01:57 +02:00
>i : I, Symbol(i, Decl(objectTypeWithStringNamedNumericProperty.ts, 47, 3))
2014-08-15 23:33:16 +02:00
>-01 : number
2015-04-13 21:36:11 +02:00
>01 : number
2014-08-15 23:33:16 +02:00