File: computedPropertyNames16_ES5.symbols

package info (click to toggle)
node-typescript 2.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 203,952 kB
  • ctags: 52,987
  • sloc: sh: 11; makefile: 5
file content (50 lines) | stat: -rw-r--r-- 1,731 bytes parent folder | download | duplicates (2)
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
=== tests/cases/conformance/es6/computedProperties/computedPropertyNames16_ES5.ts ===
var s: string;
>s : Symbol(s, Decl(computedPropertyNames16_ES5.ts, 0, 3))

var n: number;
>n : Symbol(n, Decl(computedPropertyNames16_ES5.ts, 1, 3))

var a: any;
>a : Symbol(a, Decl(computedPropertyNames16_ES5.ts, 2, 3))

class C {
>C : Symbol(C, Decl(computedPropertyNames16_ES5.ts, 2, 11))

    get [s]() { return 0;}
>s : Symbol(s, Decl(computedPropertyNames16_ES5.ts, 0, 3))

    set [n](v) { }
>n : Symbol(n, Decl(computedPropertyNames16_ES5.ts, 1, 3))
>v : Symbol(v, Decl(computedPropertyNames16_ES5.ts, 5, 12))

    static get [s + s]() { return 0; }
>s : Symbol(s, Decl(computedPropertyNames16_ES5.ts, 0, 3))
>s : Symbol(s, Decl(computedPropertyNames16_ES5.ts, 0, 3))

    set [s + n](v) { }
>s : Symbol(s, Decl(computedPropertyNames16_ES5.ts, 0, 3))
>n : Symbol(n, Decl(computedPropertyNames16_ES5.ts, 1, 3))
>v : Symbol(v, Decl(computedPropertyNames16_ES5.ts, 7, 16))

    get [+s]() { return 0; }
>s : Symbol(s, Decl(computedPropertyNames16_ES5.ts, 0, 3))

    static set [""](v) { }
>"" : Symbol(C[[""]], Decl(computedPropertyNames16_ES5.ts, 8, 28))
>v : Symbol(v, Decl(computedPropertyNames16_ES5.ts, 9, 20))

    get [0]() { return 0; }
>0 : Symbol(C[[0]], Decl(computedPropertyNames16_ES5.ts, 9, 26))

    set [a](v) { }
>a : Symbol(a, Decl(computedPropertyNames16_ES5.ts, 2, 3))
>v : Symbol(v, Decl(computedPropertyNames16_ES5.ts, 11, 12))

    static get [<any>true]() { return 0; }
    set [`hello bye`](v) { }
>v : Symbol(v, Decl(computedPropertyNames16_ES5.ts, 13, 22))

    get [`hello ${a} bye`]() { return 0; }
>a : Symbol(a, Decl(computedPropertyNames16_ES5.ts, 2, 3))
}