File: parserUsingConstructorAsIdentifier.types

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 (186 lines) | stat: -rw-r--r-- 6,144 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
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
=== tests/cases/conformance/parser/ecmascript5/parserUsingConstructorAsIdentifier.ts ===
        function define(constructor, instanceMembers, staticMembers) {
>define : (constructor: any, instanceMembers: any, staticMembers: any) => any
>constructor : any
>instanceMembers : any
>staticMembers : any

            constructor = constructor || function () { };
>constructor = constructor || function () { } : any
>constructor : any
>constructor || function () { } : any
>constructor : any
>function () { } : () => void

            PluginUtilities.Utilities.markSupportedForProcessing(constructor);
>PluginUtilities.Utilities.markSupportedForProcessing(constructor) : any
>PluginUtilities.Utilities.markSupportedForProcessing : any
>PluginUtilities.Utilities : any
>PluginUtilities : any
>Utilities : any
>markSupportedForProcessing : any
>constructor : any

            if (instanceMembers) {
>instanceMembers : any

                initializeProperties(constructor.prototype, instanceMembers);
>initializeProperties(constructor.prototype, instanceMembers) : any
>initializeProperties : any
>constructor.prototype : any
>constructor : any
>prototype : any
>instanceMembers : any
            }
            if (staticMembers) {
>staticMembers : any

                initializeProperties(constructor, staticMembers);
>initializeProperties(constructor, staticMembers) : any
>initializeProperties : any
>constructor : any
>staticMembers : any
            }
            return constructor;
>constructor : any
        }

        function derive(baseClass, constructor, instanceMembers, staticMembers) {
>derive : (baseClass: any, constructor: any, instanceMembers: any, staticMembers: any) => any
>baseClass : any
>constructor : any
>instanceMembers : any
>staticMembers : any

            if (baseClass) {
>baseClass : any

                constructor = constructor || function () { };
>constructor = constructor || function () { } : any
>constructor : any
>constructor || function () { } : any
>constructor : any
>function () { } : () => void

                var basePrototype = baseClass.prototype;
>basePrototype : any
>baseClass.prototype : any
>baseClass : any
>prototype : any

                constructor.prototype = Object.create(basePrototype);
>constructor.prototype = Object.create(basePrototype) : any
>constructor.prototype : any
>constructor : any
>prototype : any
>Object.create(basePrototype) : any
>Object.create : { (o: object): any; (o: object, properties: PropertyDescriptorMap & ThisType<any>): any; }
>Object : ObjectConstructor
>create : { (o: object): any; (o: object, properties: PropertyDescriptorMap & ThisType<any>): any; }
>basePrototype : any

                PluginUtilities.Utilities.markSupportedForProcessing(constructor);
>PluginUtilities.Utilities.markSupportedForProcessing(constructor) : any
>PluginUtilities.Utilities.markSupportedForProcessing : any
>PluginUtilities.Utilities : any
>PluginUtilities : any
>Utilities : any
>markSupportedForProcessing : any
>constructor : any

                Object.defineProperty(constructor.prototype, "constructor", { value: constructor, writable: true, configurable: true, enumerable: true });
>Object.defineProperty(constructor.prototype, "constructor", { value: constructor, writable: true, configurable: true, enumerable: true }) : any
>Object.defineProperty : (o: any, p: string | number | symbol, attributes: PropertyDescriptor & ThisType<any>) => any
>Object : ObjectConstructor
>defineProperty : (o: any, p: string | number | symbol, attributes: PropertyDescriptor & ThisType<any>) => any
>constructor.prototype : any
>constructor : any
>prototype : any
>"constructor" : "constructor"
>{ value: constructor, writable: true, configurable: true, enumerable: true } : { value: any; writable: true; configurable: true; enumerable: true; }
>value : any
>constructor : any
>writable : true
>true : true
>configurable : true
>true : true
>enumerable : true
>true : true

                if (instanceMembers) {
>instanceMembers : any

                    initializeProperties(constructor.prototype, instanceMembers);
>initializeProperties(constructor.prototype, instanceMembers) : any
>initializeProperties : any
>constructor.prototype : any
>constructor : any
>prototype : any
>instanceMembers : any
                }
                if (staticMembers) {
>staticMembers : any

                    initializeProperties(constructor, staticMembers);
>initializeProperties(constructor, staticMembers) : any
>initializeProperties : any
>constructor : any
>staticMembers : any
                }
                return constructor;
>constructor : any

            } else {
                return define(constructor, instanceMembers, staticMembers);
>define(constructor, instanceMembers, staticMembers) : any
>define : (constructor: any, instanceMembers: any, staticMembers: any) => any
>constructor : any
>instanceMembers : any
>staticMembers : any
            }
        }

        function mix(constructor) {
>mix : (constructor: any) => any
>constructor : any

            constructor = constructor || function () { };
>constructor = constructor || function () { } : any
>constructor : any
>constructor || function () { } : any
>constructor : any
>function () { } : () => void

            var i, len;
>i : any
>len : any

            for (i = 1, len = arguments.length; i < len; i++) {
>i = 1, len = arguments.length : number
>i = 1 : 1
>i : any
>1 : 1
>len = arguments.length : number
>len : any
>arguments.length : number
>arguments : IArguments
>length : number
>i < len : boolean
>i : any
>len : any
>i++ : number
>i : any

                initializeProperties(constructor.prototype, arguments[i]);
>initializeProperties(constructor.prototype, arguments[i]) : any
>initializeProperties : any
>constructor.prototype : any
>constructor : any
>prototype : any
>arguments[i] : any
>arguments : IArguments
>i : any
            }
            return constructor;
>constructor : any
        }