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

48 lines
1.6 KiB
Plaintext

=== tests/cases/conformance/es6/computedProperties/computedPropertyNames16_ES6.ts ===
var s: string;
>s : Symbol(s, Decl(computedPropertyNames16_ES6.ts, 0, 3))
var n: number;
>n : Symbol(n, Decl(computedPropertyNames16_ES6.ts, 1, 3))
var a: any;
>a : Symbol(a, Decl(computedPropertyNames16_ES6.ts, 2, 3))
class C {
>C : Symbol(C, Decl(computedPropertyNames16_ES6.ts, 2, 11))
get [s]() { return 0;}
>s : Symbol(s, Decl(computedPropertyNames16_ES6.ts, 0, 3))
set [n](v) { }
>n : Symbol(n, Decl(computedPropertyNames16_ES6.ts, 1, 3))
>v : Symbol(v, Decl(computedPropertyNames16_ES6.ts, 5, 12))
static get [s + s]() { return 0; }
>s : Symbol(s, Decl(computedPropertyNames16_ES6.ts, 0, 3))
>s : Symbol(s, Decl(computedPropertyNames16_ES6.ts, 0, 3))
set [s + n](v) { }
>s : Symbol(s, Decl(computedPropertyNames16_ES6.ts, 0, 3))
>n : Symbol(n, Decl(computedPropertyNames16_ES6.ts, 1, 3))
>v : Symbol(v, Decl(computedPropertyNames16_ES6.ts, 7, 16))
get [+s]() { return 0; }
>s : Symbol(s, Decl(computedPropertyNames16_ES6.ts, 0, 3))
static set [""](v) { }
>v : Symbol(v, Decl(computedPropertyNames16_ES6.ts, 9, 20))
get [0]() { return 0; }
set [a](v) { }
>a : Symbol(a, Decl(computedPropertyNames16_ES6.ts, 2, 3))
>v : Symbol(v, Decl(computedPropertyNames16_ES6.ts, 11, 12))
static get [<any>true]() { return 0; }
set [`hello bye`](v) { }
>v : Symbol(v, Decl(computedPropertyNames16_ES6.ts, 13, 22))
get [`hello ${a} bye`]() { return 0; }
>a : Symbol(a, Decl(computedPropertyNames16_ES6.ts, 2, 3))
}