@@ -98,12 +98,12 @@ class UnreachableCodeDetection {
98
98
}
99
99
100
100
//// [inKeywordTypeguard.js]
101
- var A = ( function ( ) {
101
+ var A = /** @class */ ( function ( ) {
102
102
function A ( ) {
103
103
}
104
104
return A ;
105
105
} ( ) ) ;
106
- var B = ( function ( ) {
106
+ var B = /** @class */ ( function ( ) {
107
107
function B ( ) {
108
108
}
109
109
return B ;
@@ -124,12 +124,12 @@ function positiveClassesTest(x) {
124
124
x . a = "1" ;
125
125
}
126
126
}
127
- var AWithOptionalProp = ( function ( ) {
127
+ var AWithOptionalProp = /** @class */ ( function ( ) {
128
128
function AWithOptionalProp ( ) {
129
129
}
130
130
return AWithOptionalProp ;
131
131
} ( ) ) ;
132
- var BWithOptionalProp = ( function ( ) {
132
+ var BWithOptionalProp = /** @class */ ( function ( ) {
133
133
function BWithOptionalProp ( ) {
134
134
}
135
135
return BWithOptionalProp ;
@@ -142,13 +142,13 @@ function positiveTestClassesWithOptionalProperties(x) {
142
142
x . b = "1" ;
143
143
}
144
144
}
145
- var AWithMethod = ( function ( ) {
145
+ var AWithMethod = /** @class */ ( function ( ) {
146
146
function AWithMethod ( ) {
147
147
}
148
148
AWithMethod . prototype . a = function ( ) { return "" ; } ;
149
149
return AWithMethod ;
150
150
} ( ) ) ;
151
- var BWithMethod = ( function ( ) {
151
+ var BWithMethod = /** @class */ ( function ( ) {
152
152
function BWithMethod ( ) {
153
153
}
154
154
BWithMethod . prototype . b = function ( ) { return "" ; } ;
@@ -172,12 +172,12 @@ function negativeTestClassesWithMemberMissingInBothClasses(x) {
172
172
x . b ( ) ;
173
173
}
174
174
}
175
- var C = ( function ( ) {
175
+ var C = /** @class */ ( function ( ) {
176
176
function C ( ) {
177
177
}
178
178
return C ;
179
179
} ( ) ) ;
180
- var D = ( function ( ) {
180
+ var D = /** @class */ ( function ( ) {
181
181
function D ( ) {
182
182
}
183
183
return D ;
@@ -190,7 +190,7 @@ function negativeMultipleClassesTest(x) {
190
190
x . a = "1" ;
191
191
}
192
192
}
193
- var ClassWithUnionProp = ( function ( ) {
193
+ var ClassWithUnionProp = /** @class */ ( function ( ) {
194
194
function ClassWithUnionProp ( ) {
195
195
}
196
196
return ClassWithUnionProp ;
@@ -203,7 +203,7 @@ function negativePropTest(x) {
203
203
var z = x . prop . a ;
204
204
}
205
205
}
206
- var NegativeClassTest = ( function ( ) {
206
+ var NegativeClassTest = /** @class */ ( function ( ) {
207
207
function NegativeClassTest ( ) {
208
208
}
209
209
NegativeClassTest . prototype . inThis = function ( ) {
@@ -216,7 +216,7 @@ var NegativeClassTest = (function () {
216
216
} ;
217
217
return NegativeClassTest ;
218
218
} ( ) ) ;
219
- var UnreachableCodeDetection = ( function ( ) {
219
+ var UnreachableCodeDetection = /** @class */ ( function ( ) {
220
220
function UnreachableCodeDetection ( ) {
221
221
}
222
222
UnreachableCodeDetection . prototype . inThis = function ( ) {
0 commit comments