Comment #14 on issue 1931 by [email protected]: v8 ignores writable flag
on arrays
http://code.google.com/p/google-caja/issues/detail?id=1931
v8 properly prevents popping in the following, but issues the wrong error:
a=[7,8,9];
Object.defineProperty(a,2,{configurable:false});
a.pop();
// throws TypeError: Cannot define property:2, object is not extensible.
// instead of TypeError: Cannot delete property '2' of [object Array]
--
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
--
---
You received this message because you are subscribed to the Google Groups "Google Caja Discuss" 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.