1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
=== tests/cases/conformance/es6/computedProperties/computedPropertyNames11_ES6.ts ===
var s: string;
>s : Symbol(s, Decl(computedPropertyNames11_ES6.ts, 0, 3))
var n: number;
>n : Symbol(n, Decl(computedPropertyNames11_ES6.ts, 1, 3))
var a: any;
>a : Symbol(a, Decl(computedPropertyNames11_ES6.ts, 2, 3))
var v = {
>v : Symbol(v, Decl(computedPropertyNames11_ES6.ts, 3, 3))
get [s]() { return 0; },
>[s] : Symbol([s], Decl(computedPropertyNames11_ES6.ts, 3, 9))
>s : Symbol(s, Decl(computedPropertyNames11_ES6.ts, 0, 3))
set [n](v) { },
>[n] : Symbol([n], Decl(computedPropertyNames11_ES6.ts, 4, 28))
>n : Symbol(n, Decl(computedPropertyNames11_ES6.ts, 1, 3))
>v : Symbol(v, Decl(computedPropertyNames11_ES6.ts, 5, 12))
get [s + s]() { return 0; },
>[s + s] : Symbol([s + s], Decl(computedPropertyNames11_ES6.ts, 5, 19))
>s : Symbol(s, Decl(computedPropertyNames11_ES6.ts, 0, 3))
>s : Symbol(s, Decl(computedPropertyNames11_ES6.ts, 0, 3))
set [s + n](v) { },
>[s + n] : Symbol([s + n], Decl(computedPropertyNames11_ES6.ts, 6, 32))
>s : Symbol(s, Decl(computedPropertyNames11_ES6.ts, 0, 3))
>n : Symbol(n, Decl(computedPropertyNames11_ES6.ts, 1, 3))
>v : Symbol(v, Decl(computedPropertyNames11_ES6.ts, 7, 16))
get [+s]() { return 0; },
>[+s] : Symbol([+s], Decl(computedPropertyNames11_ES6.ts, 7, 23))
>s : Symbol(s, Decl(computedPropertyNames11_ES6.ts, 0, 3))
set [""](v) { },
>[""] : Symbol([""], Decl(computedPropertyNames11_ES6.ts, 8, 29))
>"" : Symbol([""], Decl(computedPropertyNames11_ES6.ts, 8, 29))
>v : Symbol(v, Decl(computedPropertyNames11_ES6.ts, 9, 13))
get [0]() { return 0; },
>[0] : Symbol([0], Decl(computedPropertyNames11_ES6.ts, 9, 20))
>0 : Symbol([0], Decl(computedPropertyNames11_ES6.ts, 9, 20))
set [a](v) { },
>[a] : Symbol([a], Decl(computedPropertyNames11_ES6.ts, 10, 28))
>a : Symbol(a, Decl(computedPropertyNames11_ES6.ts, 2, 3))
>v : Symbol(v, Decl(computedPropertyNames11_ES6.ts, 11, 12))
get [<any>true]() { return 0; },
>[<any>true] : Symbol([<any>true], Decl(computedPropertyNames11_ES6.ts, 11, 19))
set [`hello bye`](v) { },
>[`hello bye`] : Symbol([`hello bye`], Decl(computedPropertyNames11_ES6.ts, 12, 36))
>v : Symbol(v, Decl(computedPropertyNames11_ES6.ts, 13, 22))
get [`hello ${a} bye`]() { return 0; }
>[`hello ${a} bye`] : Symbol([`hello ${a} bye`], Decl(computedPropertyNames11_ES6.ts, 13, 29))
>a : Symbol(a, Decl(computedPropertyNames11_ES6.ts, 2, 3))
}
|