@@ -11,7 +11,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > class > should match export a
11
11
" exports" : " Pet" ,
12
12
" modifiers" : " abstract" ,
13
13
},
14
- " index" : 0 ,
15
14
}
16
15
` ;
17
16
@@ -26,7 +25,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > class > should match export c
26
25
" exports" : " Pet" ,
27
26
" modifiers" : undefined ,
28
27
},
29
- " index" : 0 ,
30
28
}
31
29
` ;
32
30
@@ -41,7 +39,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > class > should match export d
41
39
" exports" : " Pet" ,
42
40
" modifiers" : " declare abstract" ,
43
41
},
44
- " index" : 0 ,
45
42
}
46
43
` ;
47
44
@@ -57,7 +54,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > const > should match export c
57
54
" exports" : " IGNORE_PATTERNS" ,
58
55
" modifiers" : undefined ,
59
56
},
60
- " index" : 1 ,
61
57
} ,
62
58
{
63
59
" 0" : " export const { name1, name2: bar } = o" ,
@@ -69,7 +65,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > const > should match export c
69
65
" exports" : " { name1, name2: bar }" ,
70
66
" modifiers" : undefined ,
71
67
},
72
- " index" : 46 ,
73
68
} ,
74
69
{
75
70
" 0" : " export const [ name1, name2 ] = array" ,
@@ -81,7 +76,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > const > should match export c
81
76
" exports" : " [ name1, name2 ]" ,
82
77
" modifiers" : undefined ,
83
78
},
84
- " index" : 86 ,
85
79
} ,
86
80
]
87
81
` ;
@@ -97,7 +91,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > const > should match export d
97
91
" exports" : " IGNORE_PATTERNS" ,
98
92
" modifiers" : " declare" ,
99
93
},
100
- " index" : 1 ,
101
94
}
102
95
` ;
103
96
@@ -112,7 +105,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > const enum > should match exp
112
105
" exports" : " Color" ,
113
106
" modifiers" : undefined ,
114
107
},
115
- " index" : 0 ,
116
108
}
117
109
` ;
118
110
@@ -127,7 +119,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > const enum > should match exp
127
119
" exports" : " Color" ,
128
120
" modifiers" : " declare" ,
129
121
},
130
- " index" : 0 ,
131
122
}
132
123
` ;
133
124
@@ -142,7 +133,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > enum > should match export de
142
133
" exports" : " TokenKind" ,
143
134
" modifiers" : " declare" ,
144
135
},
145
- " index" : 0 ,
146
136
}
147
137
` ;
148
138
@@ -157,7 +147,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > enum > should match export en
157
147
" exports" : " TokenKind" ,
158
148
" modifiers" : undefined ,
159
149
},
160
- " index" : 0 ,
161
150
}
162
151
` ;
163
152
@@ -172,7 +161,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > function > should match expor
172
161
" exports" : " foo" ,
173
162
" modifiers" : " async" ,
174
163
},
175
- " index" : 0 ,
176
164
}
177
165
` ;
178
166
@@ -187,7 +175,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > function > should match expor
187
175
" exports" : " foo" ,
188
176
" modifiers" : " async declare" ,
189
177
},
190
- " index" : 0 ,
191
178
}
192
179
` ;
193
180
@@ -202,7 +189,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > function > should match expor
202
189
" exports" : " foo" ,
203
190
" modifiers" : " declare" ,
204
191
},
205
- " index" : 0 ,
206
192
}
207
193
` ;
208
194
@@ -217,7 +203,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > function > should match expor
217
203
" exports" : " foo" ,
218
204
" modifiers" : undefined ,
219
205
},
220
- " index" : 0 ,
221
206
}
222
207
` ;
223
208
@@ -232,7 +217,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > function* > should match expo
232
217
" exports" : " generator" ,
233
218
" modifiers" : " async" ,
234
219
},
235
- " index" : 0 ,
236
220
}
237
221
` ;
238
222
@@ -247,7 +231,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > function* > should match expo
247
231
" exports" : " generator" ,
248
232
" modifiers" : " async declare" ,
249
233
},
250
- " index" : 0 ,
251
234
}
252
235
` ;
253
236
@@ -262,7 +245,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > function* > should match expo
262
245
" exports" : " generator" ,
263
246
" modifiers" : " declare" ,
264
247
},
265
- " index" : 0 ,
266
248
}
267
249
` ;
268
250
@@ -277,7 +259,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > function* > should match expo
277
259
" exports" : " generator" ,
278
260
" modifiers" : undefined ,
279
261
},
280
- " index" : 0 ,
281
262
}
282
263
` ;
283
264
@@ -292,7 +273,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > interface > should match expo
292
273
" exports" : " IUser" ,
293
274
" modifiers" : " declare" ,
294
275
},
295
- " index" : 0 ,
296
276
}
297
277
` ;
298
278
@@ -307,7 +287,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > interface > should match expo
307
287
" exports" : " IUser" ,
308
288
" modifiers" : undefined ,
309
289
},
310
- " index" : 0 ,
311
290
}
312
291
` ;
313
292
@@ -322,7 +301,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > let > should match export dec
322
301
" exports" : " name1, name2" ,
323
302
" modifiers" : " declare" ,
324
303
},
325
- " index" : 0 ,
326
304
}
327
305
` ;
328
306
@@ -337,7 +315,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > let > should match export let
337
315
" exports" : " name1, name2" ,
338
316
" modifiers" : undefined ,
339
317
},
340
- " index" : 0 ,
341
318
}
342
319
` ;
343
320
@@ -352,7 +329,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > namespace > should match expo
352
329
" exports" : " Utils" ,
353
330
" modifiers" : " declare" ,
354
331
},
355
- " index" : 0 ,
356
332
}
357
333
` ;
358
334
@@ -367,7 +343,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > namespace > should match expo
367
343
" exports" : " Utils" ,
368
344
" modifiers" : undefined ,
369
345
},
370
- " index" : 0 ,
371
346
}
372
347
` ;
373
348
@@ -382,7 +357,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > type > should match export de
382
357
" exports" : " Options" ,
383
358
" modifiers" : " declare" ,
384
359
},
385
- " index" : 0 ,
386
360
}
387
361
` ;
388
362
@@ -397,7 +371,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > type > should match export ty
397
371
" exports" : " Options" ,
398
372
" modifiers" : undefined ,
399
373
},
400
- " index" : 0 ,
401
374
}
402
375
` ;
403
376
@@ -412,7 +385,6 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > var > should match export dec
412
385
" exports" : " name1, name2" ,
413
386
" modifiers" : " declare" ,
414
387
},
415
- " index" : 0 ,
416
388
}
417
389
` ;
418
390
@@ -427,6 +399,5 @@ exports[`unit:EXPORT_DECLARATION_REGEX > exports > var > should match export var
427
399
" exports" : " name1, name2" ,
428
400
" modifiers" : undefined ,
429
401
},
430
- " index" : 0 ,
431
402
}
432
403
` ;
0 commit comments