Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiline fn definition with default object destructuring #311

Open
DavidSouther opened this issue May 6, 2014 · 3 comments
Open

Multiline fn definition with default object destructuring #311

DavidSouther opened this issue May 6, 2014 · 3 comments

Comments

@DavidSouther
Copy link

DavidSouther commented May 6, 2014

In CoffeeScript,

    _newPageHandler = ({
        path
        order
        definition
        redirect
        noUid
        permissioned
    })->
        order or= 100
        noUid or= false
        permissioned or= (-> true)

compiles to

var _newPageHandler;

_newPageHandler = function(_arg) {
  var definition, noUid, order, path, permissioned, redirect;
  path = _arg.path, order = _arg.order, definition = _arg.definition, redirect = _arg.redirect, noUid = _arg.noUid, permissioned = _arg.permissioned;
  order || (order = 100);
  noUid || (noUid = false);
  return permissioned || (permissioned = (function() {
    return true;
  }));
};

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.

@michaelficarra
Copy link
Owner

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.

@es128
Copy link

es128 commented Aug 25, 2015

+1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants