-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Conversation
|
||
function parseParams(func) { | ||
return func.toString().match(argsRegex)[1].split(/\s*\,\s*/); | ||
return func.toString().match(argsRegex)[2].trim().split(/\s*\,\s*/); |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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:
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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).
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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] }"
There was a problem hiding this comment.
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.
One idea I have to feature detect is to use |
Nope, it would syntax error when you load the file. Unless you want to eval On Wed, May 4, 2016 at 11:52 PM, Alex Early [email protected]
|
Yeah, we'd |
By the way, though the check-in messages doesn't suggest it, these recent commits utilise eval to allow ES6-only tests. |
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
Done! |
Support for ES6 arrow function in autoInject: