1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
=== tests/cases/conformance/es6/computedProperties/computedPropertyNames47_ES6.ts ===
enum E1 { x }
>E1 : Symbol(E1, Decl(computedPropertyNames47_ES6.ts, 0, 0))
>x : Symbol(E1.x, Decl(computedPropertyNames47_ES6.ts, 0, 9))
enum E2 { x }
>E2 : Symbol(E2, Decl(computedPropertyNames47_ES6.ts, 0, 13))
>x : Symbol(E2.x, Decl(computedPropertyNames47_ES6.ts, 1, 9))
var o = {
>o : Symbol(o, Decl(computedPropertyNames47_ES6.ts, 2, 3))
[E1.x || E2.x]: 0
>[E1.x || E2.x] : Symbol([E1.x || E2.x], Decl(computedPropertyNames47_ES6.ts, 2, 9))
>E1.x : Symbol(E1.x, Decl(computedPropertyNames47_ES6.ts, 0, 9))
>E1 : Symbol(E1, Decl(computedPropertyNames47_ES6.ts, 0, 0))
>x : Symbol(E1.x, Decl(computedPropertyNames47_ES6.ts, 0, 9))
>E2.x : Symbol(E2.x, Decl(computedPropertyNames47_ES6.ts, 1, 9))
>E2 : Symbol(E2, Decl(computedPropertyNames47_ES6.ts, 0, 13))
>x : Symbol(E2.x, Decl(computedPropertyNames47_ES6.ts, 1, 9))
};
|