Skip to content

Commit

Permalink
process: unify experimental warning messages
Browse files Browse the repository at this point in the history
  • Loading branch information
RedYetiDev committed Jul 2, 2024
1 parent 66b76e2 commit 14119c4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions lib/internal/process/pre_execution.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ const {
exposeLazyInterfaces,
defineReplaceableLazyAttribute,
setupCoverageHooks,
emitExperimentalWarning,
} = require('internal/util');

const {
Expand Down Expand Up @@ -538,8 +539,7 @@ function initializePermission() {
};
// Guarantee path module isn't monkey-patched to bypass permission model
ObjectFreeze(require('path'));
process.emitWarning('Permission is an experimental feature',
'ExperimentalWarning');
emitExperimentalWarning('Permission');
const { has } = require('internal/process/permission');
const warnFlags = [
'--allow-addons',
Expand Down Expand Up @@ -628,8 +628,7 @@ function initializeSourceMapsHandlers() {

function initializeFrozenIntrinsics() {
if (getOptionValue('--frozen-intrinsics')) {
process.emitWarning('The --frozen-intrinsics flag is experimental',
'ExperimentalWarning');
emitExperimentalWarning('Frozen intristics');
require('internal/freeze_intrinsics')();
}
}
Expand Down

0 comments on commit 14119c4

Please sign in to comment.