File: typeQueryOnClass.js

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (119 lines) | stat: -rw-r--r-- 2,152 bytes parent folder | download
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
//// [typeQueryOnClass.ts]
class C<T> {
    constructor(x: number);
    constructor(x: string);
    constructor(public x) { }

    static foo(x: number);
    static foo(x: {});
    static foo(x) { }

    static bar(x) { }

    static sa = 1;
    static sb = () => 1;

    static get sc() {
        return 1;
    }
    static set sc(x) {
    }

    static get sd() {
        return 1;
    }

    baz(x): string { return ''; }

    ia = 1;
    ib = () => this.ia;

    get ic() {
        return 1;
    }
    set ic(x) {
    }

    get id() {
        return 1;
    }

}

var c: C<string>;

// BUG 820454
var r1: typeof C;
var r2: typeof c;

class D<T> {
    constructor(public y?) { }
    x: T;
    foo() { }
}

var d: D<string>;
var r3: typeof D;
var r4: typeof d;

//// [typeQueryOnClass.js]
var C = /** @class */ (function () {
    function C(x) {
        var _this = this;
        this.x = x;
        this.ia = 1;
        this.ib = function () { return _this.ia; };
    }
    C.foo = function (x) { };
    C.bar = function (x) { };
    Object.defineProperty(C, "sc", {
        get: function () {
            return 1;
        },
        set: function (x) {
        },
        enumerable: true,
        configurable: true
    });
    Object.defineProperty(C, "sd", {
        get: function () {
            return 1;
        },
        enumerable: true,
        configurable: true
    });
    C.prototype.baz = function (x) { return ''; };
    Object.defineProperty(C.prototype, "ic", {
        get: function () {
            return 1;
        },
        set: function (x) {
        },
        enumerable: true,
        configurable: true
    });
    Object.defineProperty(C.prototype, "id", {
        get: function () {
            return 1;
        },
        enumerable: true,
        configurable: true
    });
    C.sa = 1;
    C.sb = function () { return 1; };
    return C;
}());
var c;
// BUG 820454
var r1;
var r2;
var D = /** @class */ (function () {
    function D(y) {
        this.y = y;
    }
    D.prototype.foo = function () { };
    return D;
}());
var d;
var r3;
var r4;