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

@@ -490,8 +490,8 @@ exports.Lexer = class Lexer
# Constructs a string token by escaping quotes and newlines.
makeString: (body, quote, heredoc) ->
body = body.replace /\\([\s\S])/g, ($amp, $1) ->
if $1 in ['\n', quote] then $1 else $amp
body = body.replace /\\([\s\S])/g, (match, contents) ->
if contents in ['\n', quote] then contents else match
body = body.replace /// #{quote} ///g, '\\$&'
quote + @escapeLines(body, heredoc) + quote