-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Make Y.bind consistent with native bind. Fixes #2532886 #320
Conversation
Can you describe in detail what inconsistencies these changes address? I'm curious, and it's not obvious from the code. |
If I understood correctly, it's trying to fix this: // Test in a modern browser
YUI().use('oop', function (Y) {
function Foo(a,b,c) {
this.a = a;
this.b = b;
this.c = c;
}
// native bind
var Bound = Foo.bind({}, 1, 2);
var b = new Bound(3);
console.log(Object.keys(b)); // ['a', 'b', 'c']
console.log(b.c); // 3
// YUI bind
var YBound = Y.bind(Foo, {}, 1, 2);
var c = new YBound(3);
console.log(Object.keys(c)); // [], but should be ['a', 'b', 'c']
console.log(c.c); // undefined, but should be 3
}); |
yes,just as @juandopazo shows, maybe my user case is rare, so I totally understand if this patch can not be accepted. |
👎 Failing tests |
@davglass is Travis already building YUI before testing? I'm trying this out in my PC and after building all |
return fn.apply(c || fn, args); | ||
}; | ||
}; | ||
Y.bind = bind_(0, bind_, null, 0); |
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.
Is bind(0, bind, null, 0)
for binding bind
and/or bind.call
?
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.
bind(0, bind, null, 0
is for binding bind_, no need for bind.call.
@davglass TC passed on my pc, sorry i do not know why it failed here.
@juandopazo @rgrove Looks like tests are passing, how do you feel about this merge? |
I'm not opposed, although I'd kinda like to see a performance comparison. I don't think this change is worth making |
Agreed! |
It'd be nice to add my earlier example as a test, since that's what this pull request is fixing. |
Here's a very simple perf test case that shows this new one is quite slower than the original: |
The biggest culprit for the performance dive is binding Another thing I just realized is that I propose we go with something more like this: var bind2 = function (method, obj) {
// bind the method once, so the actual function
// being bound does not change
if (typeof method === 'string') {
method = obj[method];
}
if (typeof method !== 'function') Y.log('Y.bind - what is trying to be bound is not callable', 'error');
var args = slice.call(arguments, 2),
Noop = function () {},
bound = function () {
return method.apply(
// Allow the bound function to be called with "new"
// In that case |this| will be a new object instace
// of Noop
this instanceof Noop ? this : obj,
args.concat(slice.call(arguments))
);
};
Noop.prototype = method.prototype;
bound.prototype = new Noop();
return bound;
}; |
If we are going to be modifying |
@juandopazo I like this version a lot. +1. @davglass Native bind may actually be slower, but it's worth testing. |
I want to see the perf numbers from @juandopazo's |
Looked at what Lodash does, saw this: |
Wow! That sounds like a bad idea! What if a certain browser improves its |
Yeah… Lodash is going overboard with micro-optimizations here. |
@davglass Here you go http://jsperf.com/y-bind/3 |
"Another thing I just realized is that Y.bind('methodName', obj) is pretty dangerous. It's not a shortcut for Y.bind(obj.methodName, obj), instead it's always looking for the latest value of the obj.methodName property. That sounds bad and slower." This was put in as a a way to provide a way for subclasses to override early-bound methods. Please don't completely remove the old version if you choose to replace it with the slow version. |
These new versions are way too slow for this to be merged in. |
And a +1 to @apm's comment. |
Closing this based on the latest Open Hours Hangout. Since this is a breaking change and the performance is subpar, I'm closing this for now. If anyone comes up with a better approach that is performant enough, please file a new Pull Request. |
http://yuilibrary.com/projects/yui3/ticket/2532886