0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 23:16:30 +01:00

[debugger] rename function, add it to ignore list

This commit is contained in:
Fedor Indutny 2011-09-10 17:57:55 +07:00
parent 5a3639985a
commit 79265fe389

View File

@ -655,7 +655,7 @@ function Interface() {
var proto = Interface.prototype,
ignored = ['pause', 'resume', 'exitRepl', 'handleBreak',
'requireConnection', 'killChild', 'trySpawn',
'controlEval', 'debugEval', 'print'],
'controlEval', 'debugEval', 'print', 'childPrint'],
synonym = {
'run': 'r',
'cont': 'c',
@ -715,7 +715,7 @@ Interface.prototype.print = function(text) {
process.stdout.write(text + '\n');
};
Interface.prototype.foreignPrint = function(text) {
Interface.prototype.childPrint = function(text) {
this.print(text.toString().split(/\r\n|\r|\n/g).filter(function(chunk) {
return chunk;
}).map(function(chunk) {
@ -1103,8 +1103,8 @@ Interface.prototype.trySpawn = function(cb) {
this.child = spawn(process.execPath, args, { customFds: [0, 1, 2] });
this.child.stdout.on('data', this.foreignPrint.bind(this));
this.child.stderr.on('data', this.foreignPrint.bind(this));
this.child.stdout.on('data', this.childPrint.bind(this));
this.child.stderr.on('data', this.childPrint.bind(this));
this.pause();