|
@ -27,6 +27,7 @@ GLOBAL.node = {}; |
|
|
node.createProcess = removed("node.createProcess() has been changed to process.createChildProcess() update your code"); |
|
|
node.createProcess = removed("node.createProcess() has been changed to process.createChildProcess() update your code"); |
|
|
node.exec = removed("process.exec() has moved. Use require('sys') to bring it back."); |
|
|
node.exec = removed("process.exec() has moved. Use require('sys') to bring it back."); |
|
|
node.inherits = removed("node.inherits() has moved. Use require('sys') to access it."); |
|
|
node.inherits = removed("node.inherits() has moved. Use require('sys') to access it."); |
|
|
|
|
|
process.inherits = removed("process.inherits() has moved to sys.inherits."); |
|
|
|
|
|
|
|
|
node.http = {}; |
|
|
node.http = {}; |
|
|
node.http.createServer = removed("node.http.createServer() has moved. Use require('http') to access it."); |
|
|
node.http.createServer = removed("node.http.createServer() has moved. Use require('http') to access it."); |
|
@ -72,15 +73,6 @@ function createInternalModule (id, constructor) { |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
process.inherits = function (ctor, superCtor) { |
|
|
|
|
|
var tempCtor = function(){}; |
|
|
|
|
|
tempCtor.prototype = superCtor.prototype; |
|
|
|
|
|
ctor.super_ = superCtor; |
|
|
|
|
|
ctor.prototype = new tempCtor(); |
|
|
|
|
|
ctor.prototype.constructor = ctor; |
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
process.createChildProcess = function (file, args, env) { |
|
|
process.createChildProcess = function (file, args, env) { |
|
|
var child = new process.ChildProcess(); |
|
|
var child = new process.ChildProcess(); |
|
|
args = args || []; |
|
|
args = args || []; |
|
|