process: remove old notices about removed methods

These methods were removed a long time ago. Keeping these notices here
makes no sense anymore.

Also, removing this part of code slightly speeds up the startup.
This commit is contained in:
Maciej Małecki 2012-02-16 04:21:16 +01:00 committed by isaacs
parent 71e975669c
commit 3bc3af0276

View File

@ -46,8 +46,6 @@
startup.processChannel(); startup.processChannel();
startup.removedMethods();
startup.resolveArgv0(); startup.resolveArgv0();
// There are various modes that Node can run in. The most common two // There are various modes that Node can run in. The most common two
@ -431,37 +429,6 @@
} }
} }
startup._removedProcessMethods = {
'assert': 'process.assert() use require("assert").ok() instead',
'debug': 'process.debug() use console.error() instead',
'error': 'process.error() use console.error() instead',
'watchFile': 'process.watchFile() has moved to fs.watchFile()',
'unwatchFile': 'process.unwatchFile() has moved to fs.unwatchFile()',
'mixin': 'process.mixin() has been removed.',
'createChildProcess': 'childProcess API has changed. See doc/api.txt.',
'inherits': 'process.inherits() has moved to util.inherits()',
'_byteLength': 'process._byteLength() has moved to Buffer.byteLength'
};
startup.removedMethods = function() {
var desc = {
configurable: true,
writable: true,
enumerable: false
};
for (var method in startup._removedProcessMethods) {
var reason = startup._removedProcessMethods[method];
desc.value = startup._removedMethod(reason);
Object.defineProperty(process, method, desc);
}
};
startup._removedMethod = function(reason) {
return function() {
throw new Error(reason);
};
};
startup.resolveArgv0 = function() { startup.resolveArgv0 = function() {
var cwd = process.cwd(); var cwd = process.cwd();
var isWindows = process.platform === 'win32'; var isWindows = process.platform === 'win32';