Comment #23 on issue 2700 by [email protected]: Implement arrow functions
https://code.google.com/p/v8/issues/detail?id=2700
It appears that chromium 38 has half of an arrow function implementation.
You can define arrow functions but they don't have a lexical this.
function Foo() { this.x = true };
Foo.prototype.bound = function(){ return () => this.x }
var foo = new Foo();
foo.bound()(); //=> undefined.
The last line should return true.
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.