You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No, this is not intentional. It appears named destructuring does not allow newlines to be used as separators, unlike object literals. This should be an easy fix.
In CoffeeScript,
compiles to
http://coffeescript.org/#try:%20%20%20%20_newPageHandler%20%3D%20(%7B%0A%20%20%20%20%20%20%20%20path%0A%20%20%20%20%20%20%20%20order%0A%20%20%20%20%20%20%20%20definition%0A%20%20%20%20%20%20%20%20redirect%0A%20%20%20%20%20%20%20%20noUid%0A%20%20%20%20%20%20%20%20permissioned%0A%20%20%20%20%7D)-%3E%0A%20%20%20%20%20%20%20%20order%20or%3D%20100%0A%20%20%20%20%20%20%20%20noUid%20or%3D%20false%0A%20%20%20%20%20%20%20%20permissioned%20or%3D%20(-%3E%20true)%0A
It fails to compile on Redux.
http://michaelficarra.github.io/CoffeeScriptRedux/#try:%20%20%20%20_newPageHandler%20%3D%20(%7B%0A%20%20%20%20%20%20%20%20path%0A%20%20%20%20%20%20%20%20order%0A%20%20%20%20%20%20%20%20definition%0A%20%20%20%20%20%20%20%20redirect%0A%20%20%20%20%20%20%20%20noUid%0A%20%20%20%20%20%20%20%20permissioned%0A%20%20%20%20%7D)-%3E%0A%20%20%20%20%20%20%20%20order%20or%3D%20100%0A%20%20%20%20%20%20%20%20noUid%20or%3D%20false%0A%20%20%20%20%20%20%20%20permissioned%20or%3D%20(-%3E%20true)
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.
The text was updated successfully, but these errors were encountered: