Searched refs:m_seenAttributes (Results 1 – 2 of 2) sorted by relevance
56 return m_value || (m_seenAttributes & WritablePresent); in isDataDescriptor()96 m_seenAttributes = EnumerablePresent | ConfigurablePresent; in setDescriptor()100 m_seenAttributes = EnumerablePresent | ConfigurablePresent | WritablePresent; in setDescriptor()112 m_seenAttributes = EnumerablePresent | ConfigurablePresent; in setAccessorDescriptor()121 m_seenAttributes |= WritablePresent; in setWritable()130 m_seenAttributes |= EnumerablePresent; in setEnumerable()139 m_seenAttributes |= ConfigurablePresent; in setConfigurable()171 unsigned sharedSeen = other.m_seenAttributes & m_seenAttributes; in attributesEqual()184 unsigned sharedSeen = other.m_seenAttributes & m_seenAttributes; in attributesWithOverride()
36 , m_seenAttributes(0) in PropertyDescriptor()58 bool isEmpty() const { return !(m_value || m_getter || m_setter || m_seenAttributes); } in isEmpty()59 bool writablePresent() const { return m_seenAttributes & WritablePresent; } in writablePresent()60 bool enumerablePresent() const { return m_seenAttributes & EnumerablePresent; } in enumerablePresent()61 bool configurablePresent() const { return m_seenAttributes & ConfigurablePresent; } in configurablePresent()76 unsigned m_seenAttributes; variable