Home | History | Annotate | Download | only in runtime

Lines Matching refs:m_u

67             m_u.store.value1 = v1;
68 m_u.store.value2 = v2;
70 m_u.function.generator = generator;
81 ThunkGenerator generator() const { ASSERT(m_attributes & Function); return m_u.function.generator; }
83 NativeFunction function() const { ASSERT(m_attributes & Function); return m_u.function.functionValue; }
84 unsigned char functionLength() const { ASSERT(m_attributes & Function); return static_cast<unsigned char>(m_u.function.length); }
86 GetFunction propertyGetter() const { ASSERT(!(m_attributes & Function)); return m_u.property.get; }
87 PutFunction propertyPutter() const { ASSERT(!(m_attributes & Function)); return m_u.property.put; }
89 intptr_t lexerValue() const { ASSERT(!m_attributes); return m_u.lexer.value; }
118 } m_u;