Lines Matching defs:child
29 case 'child':
30 return child();
39 const child = spawn(process.execPath, [__filename, 'child']);
43 child.stderr.on('data', function(c) {
47 child.stderr.setEncoding('utf8');
49 child.stderr.on('end', function() {
54 child.on('exit', common.mustCall(function(c) {
56 console.log('ok - child exited nicely');
60 function child() {