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

Arrow function support in ES6. #1125

Merged
merged 7 commits into from
May 16, 2016
Merged

Arrow function support in ES6. #1125

merged 7 commits into from
May 16, 2016

Conversation

steverobb
Copy link

Support for ES6 arrow function in autoInject:

async.autoInject({
    task1: (cb)        => cb(null, 1),
    task2: (task3, cb) => cb(null, 2),
    task3: cb          => cb(null, 3)
}, (err, task3, task1) => {
    // use task1 and task3
});


function parseParams(func) {
return func.toString().match(argsRegex)[1].split(/\s*\,\s*/);
return func.toString().match(argsRegex)[2].trim().split(/\s*\,\s*/);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

don't use .trim() it doesn't have sufficient vendor support. Either import lodash/trim or use a different approach. Is it necessary?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The trim is necessary because it doesn't support spaces around the function name parameters, e.g. function( x, y, z ), and then there was a space after the final parameter. This wasn't obvious until I added support for arrow functions like x => y. I tried inventing a regex which coped with both functions and arrows, but failed, and the trim seemed like an easy workaround.

Alternatively, it could import a dedicated library, e.g.: https://www.npmjs.com/package/get-parameter-names

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Its entire purpose is to 'auto-sniff' to aid readability, otherwise you'd just use auto. What is the objection here?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's not my library, so it's not my call, but these issues have already been considered:

#608 (comment)

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's one opinion. But if you wish to see it removed, I think you should raise an issue ticket. This is not the correct forum.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not about you or your reputation. You have a valid opinion and I encourage you to raise it for discussion. Just not in the patch comments of this tangentially-related PR.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, sniffing parameters is the whole point of autoInject. By using it, you accept all the caveats associated with that approach. If you don't want it, you can use auto (or the array-style form for tasks).

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jdalton any ideas on how to feature-detect native arrow-function support for testing?

Copy link
Contributor

@jdalton jdalton Apr 28, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't forget about default params:

function a(b=1) {}
a+''
// => "function a(b=1) {}"

or comments in IE 11:

function a(/*b,c,*/d) {} 
a+'' 
// => "function a(/*b,c,*/d) {}" 

or bound functions:

function a(b,c) {}
var b = a.bind({})
b+''
// => "function () { [native code] }"

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We'll just document that all of those don't work.

@aearly
Copy link
Collaborator

aearly commented May 5, 2016

One idea I have to feature detect is to use eval for the whole test. If eval("()=>1") throws, we know arrow funcs aren't supported. Then we can do an eval on the rest of the test body to test the feature. Seems really clunky though.

@megawac
Copy link
Collaborator

megawac commented May 5, 2016

Nope, it would syntax error when you load the file. Unless you want to eval
the entire test ^^

On Wed, May 4, 2016 at 11:52 PM, Alex Early [email protected]
wrote:

One idea I have to feature detect is to use eval for the whole test. If
eval("()=>1") throws, we know arrow funcs aren't supported. Then we can
do an eval on the rest of the test body to test the feature. Seems really
clunky though.


You are receiving this because you commented.
Reply to this email directly or view it on GitHub
#1125 (comment)

@aearly
Copy link
Collaborator

aearly commented May 5, 2016

Yeah, we'd eval the whole test....

@steverobb
Copy link
Author

By the way, though the check-in messages doesn't suggest it, these recent commits utilise eval to allow ES6-only tests.

@aearly
Copy link
Collaborator

aearly commented May 12, 2016

Ah sorry, I didn't notice you had pushed those changes. It looks like there's now some conflicts -- can you resolve them?

# Conflicts:
#	mocha_test/autoInject.js
@steverobb
Copy link
Author

Done!

@aearly aearly merged commit 5a9bbe5 into caolan:master May 16, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants