Status: New
Owner: ----
New issue 278 by isaacschlueter: Can't change a function's "name" property
http://code.google.com/p/v8/issues/detail?id=278
For this code:
var f = function () {};
f.name = "foo";
print(f.name);
In v8, "f.name" returns an empty string, even though it was just set
to "foo".
For this code:
var f = function bar () {};
f.name = "foo";
print(f.name);
v8 prints "bar", even though the name should have been set to "foo" on the
second line.
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---