Lines Matching refs:process
14 process.emit('warning', 'test');
20 // process.noDeprecation = true
21 process.noDeprecation = true;
22 process.emitWarning('test', 'DeprecationWarning');
23 process.noDeprecation = false;
30 process.emitWarning('test', {});
31 process.once('warning', common.mustCall((warning) => {
38 // process.emitWarning will throw when process.throwDeprecation is true
40 process.throwDeprecation = true;
41 process.once('uncaughtException', (err) => {
45 process.emitWarning('test', 'DeprecationWarning');
49 process.throwDeprecation = false;
57 process.emitWarning(err);
62 process.emitWarning('test', { detail: 'foo' });
63 process.on('warning', (warning) => {