getting the whole codebase passing jslint again.

This commit is contained in:
Jeremy Ashkenas
2010-07-28 20:38:16 -04:00
parent c67e7fbcea
commit 8522a11bcb
4 changed files with 5 additions and 5 deletions

View File

@@ -577,7 +577,7 @@ exports.RangeNode = class RangeNode extends BaseNode
else
clause = "#@fromVar <= #@toVar ?"
body = "var #i = #@fromVar; #clause #i <#@equals #@toVar : #i >#@equals #@toVar; #clause #i += 1 : #i -= 1"
post = "{ #{result}.push(#i) };\n#{idt}return #result;\n#o.indent"
post = "{ #{result}.push(#i); }\n#{idt}return #result;\n#o.indent"
"(function() {#{pre}\n#{idt}for (#body)#post}).call(this)"
#### SliceNode