removing the last traces of half-assignments. Issue #541.

This commit is contained in:
Jeremy Ashkenas
2010-07-29 21:23:49 -04:00
parent 980a663c19
commit b18d7fb550
11 changed files with 36 additions and 41 deletions

View File

@@ -30,7 +30,7 @@ lexer = new Lexer
# Compile a string of CoffeeScript code to JavaScript, using the Coffee/Jison
# compiler.
exports.compile = compile = (code, options) ->
options = or {}
options or= {}
try
(parser.parse lexer.tokenize code).compile options
catch err