You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we have the Attribute which by default is READONLY, NON_ENUMERABLE and PERMANENT. Which means when we create a for example a data descriptor with only Attribute::READONLY (DataDescriptor::new(value, Attribute::READONLY)), One would expect it to be READONLY, ENUMBERABLE and CONFIGURABLE, but in reality it is READONLY, NON_ENUMERABLE and PERMANENT which is counter intuitive.
This is similar to what V8 does.
The text was updated successfully, but these errors were encountered:
Currently we have the
Attribute
which by default isREADONLY
,NON_ENUMERABLE
andPERMANENT
. Which means when we create a for example a data descriptor with onlyAttribute::READONLY
(DataDescriptor::new(value, Attribute::READONLY)
), One would expect it to beREADONLY
,ENUMBERABLE
andCONFIGURABLE
, but in reality it isREADONLY
,NON_ENUMERABLE
andPERMANENT
which is counter intuitive.This is similar to what V8 does.
The text was updated successfully, but these errors were encountered: