removing dollar-prefixed local vars (let's keep 'em for globals only)

This commit is contained in:
Jeremy Ashkenas
2010-10-05 00:23:04 -04:00
parent 08388fea5a
commit c79a7b5055
2 changed files with 4 additions and 4 deletions

View File

@@ -569,8 +569,8 @@
return str.replace(MULTILINER, heredoc ? '\\n' : '');
};
Lexer.prototype.makeString = function(body, quote, heredoc) {
body = body.replace(/\\([\s\S])/g, function($amp, $1) {
return ('\n' === $1 || quote === $1) ? $1 : $amp;
body = body.replace(/\\([\s\S])/g, function(match, contents) {
return ('\n' === contents || quote === contents) ? contents : match;
});
body = body.replace(RegExp("" + quote, "g"), '\\$&');
return quote + this.escapeLines(body, heredoc) + quote;