maxtaco / coffee-script

IcedCoffeeScript
http://maxtaco.github.com/coffee-script
MIT License
727 stars 58 forks source link

Uncaught ReferenceError: autocb is not defined #61

Open taralx opened 11 years ago

taralx commented 11 years ago

Input: -> (autocb) ->

Expected output: (function() { return function(autocb) { autocb(); }; });

Actual output: (function() { autocb(function(autocb) { autocb(); return; }); return; });