File: performanceComparisonOfStructurallyIdenticalInterfacesWithGenericSignatures.js

package info (click to toggle)
node-typescript 5.0.4%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 459,116 kB
  • sloc: javascript: 1,972,754; makefile: 6; sh: 1
file content (162 lines) | stat: -rw-r--r-- 5,409 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
//// [performanceComparisonOfStructurallyIdenticalInterfacesWithGenericSignatures.ts]
export declare type ThenArg<T> = T extends any ? any : T extends PromiseLike<infer U> ? U : T;

export interface InterfaceA<T> {
    filter(callback: (newValue: T, oldValue: T) => boolean): InterfaceA<T>;
    map<D>(callback: (value: T) => D): InterfaceA<D>;
    await<R extends ThenArg<T>>(): InterfaceA<R>;
    awaitLatest<R extends ThenArg<T>>(): InterfaceA<R>;
    awaitOrdered<R extends ThenArg<T>>(): InterfaceA<R>;
    awaitOrdered2<R extends ThenArg<T>>(): InterfaceA<R>;
    awaitOrdered3<R extends ThenArg<T>>(): InterfaceA<R>;
    awaitOrdered4<R extends ThenArg<T>>(): InterfaceA<R>;
    awaitOrdered5<R extends ThenArg<T>>(): InterfaceA<R>;
    awaitOrdered6<R extends ThenArg<T>>(): InterfaceA<R>;
    awaitOrdered7<R extends ThenArg<T>>(): InterfaceA<R>;
    awaitOrdered8<R extends ThenArg<T>>(): InterfaceA<R>;
    awaitOrdered9<R extends ThenArg<T>>(): InterfaceA<R>;
}

export interface InterfaceB<T> extends InterfaceA<T> {
    map<D>(callback: (value: T) => D): InterfaceB<D>;
    await<R extends ThenArg<T>>(): InterfaceB<R>;
    awaitLatest<R extends ThenArg<T>>(): InterfaceB<R>;
    awaitOrdered<R extends ThenArg<T>>(): InterfaceB<R>;
    awaitOrdered2<R extends ThenArg<T>>(): InterfaceB<R>;
    awaitOrdered3<R extends ThenArg<T>>(): InterfaceB<R>;
    awaitOrdered4<R extends ThenArg<T>>(): InterfaceB<R>;
    awaitOrdered5<R extends ThenArg<T>>(): InterfaceB<R>;
    awaitOrdered6<R extends ThenArg<T>>(): InterfaceB<R>;
    awaitOrdered7<R extends ThenArg<T>>(): InterfaceB<R>;
    awaitOrdered8<R extends ThenArg<T>>(): InterfaceB<R>;
    awaitOrdered9<R extends ThenArg<T>>(): InterfaceB<R>;
}

export class A<T> implements InterfaceB<T> {
    public filter(callback: (newValue: T, oldValue: T) => boolean): B<T> {
        return undefined as any;
    }

    public map<D>(callback: (value: T) => D): B<D> {
        return undefined as any;
    }

    public await<R extends ThenArg<T>>(): B<R> {
        return undefined as any;
    }

    public awaitOrdered<R extends ThenArg<T>>(): B<R> {
        return undefined as any;
    }

    public awaitOrdered2<R extends ThenArg<T>>(): B<R> {
        return undefined as any;
    }

    public awaitOrdered3<R extends ThenArg<T>>(): B<R> {
        return undefined as any;
    }

    public awaitOrdered4<R extends ThenArg<T>>(): B<R> {
        return undefined as any;
    }

    public awaitOrdered5<R extends ThenArg<T>>(): B<R> {
        return undefined as any;
    }

    public awaitOrdered6<R extends ThenArg<T>>(): B<R> {
        return undefined as any;
    }

    public awaitOrdered7<R extends ThenArg<T>>(): B<R> {
        return undefined as any;
    }

    public awaitOrdered8<R extends ThenArg<T>>(): B<R> {
        return undefined as any;
    }

    public awaitOrdered9<R extends ThenArg<T>>(): B<R> {
        return undefined as any;
    }

    public awaitLatest<R extends ThenArg<T>>(): B<R> {
        return undefined as any;
    }
}

export class B<T> extends A<T> { }

//// [performanceComparisonOfStructurallyIdenticalInterfacesWithGenericSignatures.js]
"use strict";
var __extends = (this && this.__extends) || (function () {
    var extendStatics = function (d, b) {
        extendStatics = Object.setPrototypeOf ||
            ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
            function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
        return extendStatics(d, b);
    };
    return function (d, b) {
        if (typeof b !== "function" && b !== null)
            throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
        extendStatics(d, b);
        function __() { this.constructor = d; }
        d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
    };
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.B = exports.A = void 0;
var A = /** @class */ (function () {
    function A() {
    }
    A.prototype.filter = function (callback) {
        return undefined;
    };
    A.prototype.map = function (callback) {
        return undefined;
    };
    A.prototype.await = function () {
        return undefined;
    };
    A.prototype.awaitOrdered = function () {
        return undefined;
    };
    A.prototype.awaitOrdered2 = function () {
        return undefined;
    };
    A.prototype.awaitOrdered3 = function () {
        return undefined;
    };
    A.prototype.awaitOrdered4 = function () {
        return undefined;
    };
    A.prototype.awaitOrdered5 = function () {
        return undefined;
    };
    A.prototype.awaitOrdered6 = function () {
        return undefined;
    };
    A.prototype.awaitOrdered7 = function () {
        return undefined;
    };
    A.prototype.awaitOrdered8 = function () {
        return undefined;
    };
    A.prototype.awaitOrdered9 = function () {
        return undefined;
    };
    A.prototype.awaitLatest = function () {
        return undefined;
    };
    return A;
}());
exports.A = A;
var B = /** @class */ (function (_super) {
    __extends(B, _super);
    function B() {
        return _super !== null && _super.apply(this, arguments) || this;
    }
    return B;
}(A));
exports.B = B;