Issue 60: "delete Math; delete this.Math.PI;" causes invalid exception
http://code.google.com/p/v8/issues/detail?id=60

New issue report by aoihige:
In v8_shell_sample, the dollowing code will crash the program:
delete Math;
delete this.Math.PI;

In Google Chrome, this following code will cause script error on the
second alert
{
delete Math;
delete this.Math.PI;
}
catch(e)
{
     alert(e.message);
     alert(e.toString());
     alert(3);
}

Note that the problem won't happen if "delete Math.PI" is used instead
of "delete this.Math.PI"


Issue attributes:
        Status: New
        Owner: ----

-- 
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to