Files
Kmake/test/fixtures/disable-warning.js

16 lines
289 B
JavaScript
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
'use strict';
process.emitWarning('Deprecation Warning 1', {
code: 'DEP1',
type: 'DeprecationWarning'
});
process.emitWarning('Deprecation Warning 2', {
code: 'DEP2',
type: 'DeprecationWarning'
});
process.emitWarning('Experimental Warning', {
type: 'ExperimentalWarning'
});