Remove octal escape sequences and avoid reserved keyword

Both are errors in strict mode.
This commit is contained in:
Jonas Westerlund 2012-07-04 22:55:54 +02:00 committed by Nathan Rajlich
parent ed7fb149a2
commit e11b6b8f75

View File

@ -40,7 +40,7 @@ exports.start = function(argv, stdin, stdout) {
stdout = stdout || process.stdout;
var args = ['--debug-brk'].concat(argv),
interface = new Interface(stdin, stdout, args);
interface_ = new Interface(stdin, stdout, args);
stdin.resume();
@ -49,7 +49,7 @@ exports.start = function(argv, stdin, stdout) {
'Please report this bug.');
console.error(e.message);
console.error(e.stack);
if (interface.child) interface.child.kill();
if (interface_.child) interface_.child.kill();
process.exit(1);
});
};
@ -700,7 +700,7 @@ function SourceUnderline(sourceText, position, repl) {
// Colourize char if stdout supports colours
if (repl.useColors) {
tail = tail.replace(/(.+?)([^\w]|$)/, '\033[32m$1\033[39m$2');
tail = tail.replace(/(.+?)([^\w]|$)/, '\u001b[32m$1\u001b[39m$2');
}
// Return source line with coloured char at `position`