@@ -31,7 +31,7 @@ if (cluster.isMaster) {
3131 // scanner but is ignored by atoi(3). Heinous hack.
3232 cluster . setupMaster ( { execArgv : [ `--debug=${ common . PORT } .` ] } ) ;
3333 const worker = cluster . fork ( ) ;
34- worker . on ( 'message' , common . mustCall ( message => {
34+ worker . on ( 'message' , common . mustCall ( ( message ) => {
3535 assert . strictEqual ( Array . isArray ( message ) , true ) ;
3636 assert . strictEqual ( message [ 0 ] , 'listening' ) ;
3737 let continueRecv = false ;
@@ -40,9 +40,9 @@ if (cluster.isMaster) {
4040 const debugClient = net . connect ( { host, port : common . PORT } ) ;
4141 const protocol = new Protocol ( ) ;
4242 debugClient . setEncoding ( 'utf8' ) ;
43- debugClient . on ( 'data' , data => protocol . execute ( data ) ) ;
43+ debugClient . on ( 'data' , ( data ) => protocol . execute ( data ) ) ;
4444 debugClient . once ( 'connect' , common . mustCall ( ( ) => {
45- protocol . onResponse = common . mustCall ( res => {
45+ protocol . onResponse = common . mustCall ( ( res ) => {
4646 protocol . onResponse = ( res ) => {
4747 // It can happen that the first continue was sent before the break
4848 // event was received. If that's the case, send also a continue from
@@ -85,7 +85,7 @@ if (cluster.isMaster) {
8585 throw ex ;
8686 } ) ;
8787} else {
88- const server = net . createServer ( socket => socket . pipe ( socket ) ) ;
88+ const server = net . createServer ( ( socket ) => socket . pipe ( socket ) ) ;
8989 const cb = ( ) => {
9090 process . send ( [ 'listening' , server . address ( ) ] ) ;
9191 debugger ;
0 commit comments