@@ -138,7 +138,7 @@ describe('componentDocblockHandler', () => {
138
138
const importDef = useDefault ? `${ importName } ` : `{ ${ importName } }` ;
139
139
140
140
const mockImporter = makeMockImporter ( {
141
- test1 : stmtLast =>
141
+ test1 : ( stmtLast ) =>
142
142
stmtLast (
143
143
`
144
144
/**
@@ -150,7 +150,7 @@ describe('componentDocblockHandler', () => {
150
150
0 ,
151
151
) . get ( 'declaration' ) as NodePath ,
152
152
153
- test2 : stmtLast =>
153
+ test2 : ( stmtLast ) =>
154
154
stmtLast < ExportDefaultDeclaration > ( `
155
155
import ${ importDef } from 'test1';
156
156
export default ${ importName } ;
@@ -189,7 +189,7 @@ describe('componentDocblockHandler', () => {
189
189
describe ( 'React.createClass' , ( ) => {
190
190
testDockblockHandler (
191
191
'var Component = React.createClass({})' ,
192
- src =>
192
+ ( src ) =>
193
193
parse
194
194
. statementLast ( src )
195
195
. get ( 'declarations.0.init.arguments.0' ) as NodePath < ObjectExpression > ,
@@ -198,15 +198,17 @@ describe('componentDocblockHandler', () => {
198
198
} ) ;
199
199
200
200
describe ( 'ClassDeclaration' , ( ) => {
201
- testDockblockHandler ( 'class Component {}' , src => parse . statementLast ( src ) ) ;
202
- testDecorators ( 'class Component {}' , src => parse . statementLast ( src ) ) ;
201
+ testDockblockHandler ( 'class Component {}' , ( src ) =>
202
+ parse . statementLast ( src ) ,
203
+ ) ;
204
+ testDecorators ( 'class Component {}' , ( src ) => parse . statementLast ( src ) ) ;
203
205
testImports ( 'export class Component {}' , 'Component' ) ;
204
206
} ) ;
205
207
206
208
describe ( 'ClassExpression' , ( ) => {
207
209
testDockblockHandler (
208
210
'var Component = class {};' ,
209
- src =>
211
+ ( src ) =>
210
212
parse
211
213
. statementLast < VariableDeclaration > ( src )
212
214
. get ( 'declarations.0.init' ) as NodePath < ClassExpression > ,
@@ -215,21 +217,21 @@ describe('componentDocblockHandler', () => {
215
217
} ) ;
216
218
217
219
describe ( 'Stateless functions' , ( ) => {
218
- testDockblockHandler ( 'function Component() {}' , src =>
220
+ testDockblockHandler ( 'function Component() {}' , ( src ) =>
219
221
parse . statementLast ( src ) ,
220
222
) ;
221
223
testImports ( 'export function Component() {}' , 'Component' ) ;
222
224
testDockblockHandler (
223
225
'var Component = function () {};' ,
224
- src =>
226
+ ( src ) =>
225
227
parse
226
228
. statementLast < VariableDeclaration > ( src )
227
229
. get ( 'declarations.0.init' ) as NodePath < FunctionExpression > ,
228
230
) ;
229
231
testImports ( 'export var Component = function () {};' , 'Component' ) ;
230
232
testDockblockHandler (
231
233
'var Component = () => {}' ,
232
- src =>
234
+ ( src ) =>
233
235
parse
234
236
. statementLast < VariableDeclaration > ( src )
235
237
. get ( 'declarations.0.init' ) as NodePath < ArrowFunctionExpression > ,
@@ -241,7 +243,7 @@ describe('componentDocblockHandler', () => {
241
243
describe ( 'Default React.createClass export' , ( ) => {
242
244
testDockblockHandler (
243
245
'export default React.createClass({});' ,
244
- src =>
246
+ ( src ) =>
245
247
parse
246
248
. statementLast ( src )
247
249
. get ( 'declaration.arguments.0' ) as NodePath < ObjectExpression > ,
@@ -251,14 +253,14 @@ describe('componentDocblockHandler', () => {
251
253
describe ( 'Default class declaration export' , ( ) => {
252
254
testDockblockHandler (
253
255
'export default class Component {}' ,
254
- src =>
256
+ ( src ) =>
255
257
parse
256
258
. statementLast ( src )
257
259
. get ( 'declaration' ) as NodePath < ClassDeclaration > ,
258
260
) ;
259
261
testDecorators (
260
262
'class Component {}' ,
261
- src =>
263
+ ( src ) =>
262
264
parse
263
265
. statementLast ( src )
264
266
. get ( 'declaration' ) as NodePath < ClassDeclaration > ,
@@ -269,14 +271,14 @@ describe('componentDocblockHandler', () => {
269
271
describe ( 'Default class expression export' , ( ) => {
270
272
testDockblockHandler (
271
273
'export default class {}' ,
272
- src =>
274
+ ( src ) =>
273
275
parse
274
276
. statementLast ( src )
275
277
. get ( 'declaration' ) as NodePath < ClassExpression > ,
276
278
) ;
277
279
testDecorators (
278
280
'class {}' ,
279
- src =>
281
+ ( src ) =>
280
282
parse
281
283
. statementLast ( src )
282
284
. get ( 'declaration' ) as NodePath < ClassExpression > ,
@@ -288,7 +290,7 @@ describe('componentDocblockHandler', () => {
288
290
describe ( 'named function' , ( ) => {
289
291
testDockblockHandler (
290
292
'export default function Component() {}' ,
291
- src =>
293
+ ( src ) =>
292
294
parse
293
295
. statementLast ( src )
294
296
. get ( 'declaration' ) as NodePath < FunctionDeclaration > ,
@@ -298,7 +300,7 @@ describe('componentDocblockHandler', () => {
298
300
describe ( 'anonymous function' , ( ) => {
299
301
testDockblockHandler (
300
302
'export default function() {}' ,
301
- src =>
303
+ ( src ) =>
302
304
parse
303
305
. statementLast ( src )
304
306
. get ( 'declaration' ) as NodePath < FunctionDeclaration > ,
@@ -308,7 +310,7 @@ describe('componentDocblockHandler', () => {
308
310
describe ( 'arrow function' , ( ) => {
309
311
testDockblockHandler (
310
312
'export default () => {}' ,
311
- src =>
313
+ ( src ) =>
312
314
parse
313
315
. statementLast < ExportDefaultDeclaration > ( src )
314
316
. get ( 'declaration' ) as NodePath < ArrowFunctionExpression > ,
@@ -321,7 +323,7 @@ describe('componentDocblockHandler', () => {
321
323
describe ( 'Named React.createClass export' , ( ) => {
322
324
testDockblockHandler (
323
325
'export var Component = React.createClass({});' ,
324
- src =>
326
+ ( src ) =>
325
327
parse
326
328
. statementLast ( src )
327
329
. get (
@@ -333,14 +335,14 @@ describe('componentDocblockHandler', () => {
333
335
describe ( 'Named class declaration export' , ( ) => {
334
336
testDockblockHandler (
335
337
'export class Component {}' ,
336
- src =>
338
+ ( src ) =>
337
339
parse
338
340
. statementLast ( src )
339
341
. get ( 'declaration' ) as NodePath < ClassDeclaration > ,
340
342
) ;
341
343
testDecorators (
342
344
'class Component {}' ,
343
- src =>
345
+ ( src ) =>
344
346
parse
345
347
. statementLast ( src )
346
348
. get ( 'declaration' ) as NodePath < ClassDeclaration > ,
@@ -352,7 +354,7 @@ describe('componentDocblockHandler', () => {
352
354
describe ( 'named function' , ( ) => {
353
355
testDockblockHandler (
354
356
'export function Component() {}' ,
355
- src =>
357
+ ( src ) =>
356
358
parse
357
359
. statementLast ( src )
358
360
. get ( 'declaration' ) as NodePath < FunctionDeclaration > ,
@@ -362,7 +364,7 @@ describe('componentDocblockHandler', () => {
362
364
describe ( 'anonymous function' , ( ) => {
363
365
testDockblockHandler (
364
366
'export var Component = function() {}' ,
365
- src =>
367
+ ( src ) =>
366
368
parse
367
369
. statementLast ( src )
368
370
. get ( 'declaration' ) as NodePath < FunctionExpression > ,
@@ -372,7 +374,7 @@ describe('componentDocblockHandler', () => {
372
374
describe ( 'arrow function' , ( ) => {
373
375
testDockblockHandler (
374
376
'export var Component = () => {}' ,
375
- src =>
377
+ ( src ) =>
376
378
parse
377
379
. statementLast ( src )
378
380
. get ( 'declaration' ) as NodePath < ArrowFunctionExpression > ,
@@ -389,7 +391,7 @@ describe('componentDocblockHandler', () => {
389
391
`
390
392
React.forwardRef((props, ref) => {});
391
393
import React from "react";` ,
392
- src =>
394
+ ( src ) =>
393
395
parse
394
396
. statement ( src , - 2 )
395
397
. get ( 'expression' ) as NodePath < CallExpression > ,
@@ -409,7 +411,7 @@ describe('componentDocblockHandler', () => {
409
411
React.memo(React.forwardRef((props, ref) => {}));
410
412
import React from "react";
411
413
` ,
412
- src =>
414
+ ( src ) =>
413
415
parse
414
416
. statement ( src , - 2 )
415
417
. get ( 'expression' ) as NodePath < CallExpression > ,
@@ -432,7 +434,7 @@ describe('componentDocblockHandler', () => {
432
434
React.forwardRef(Component);
433
435
import React from "react";
434
436
` ,
435
- src =>
437
+ ( src ) =>
436
438
parse
437
439
. statement ( src , - 2 )
438
440
. get ( 'expression' ) as NodePath < CallExpression > ,
0 commit comments