Changeset 169316 in webkit for trunk/Source/JavaScriptCore/runtime/SmallStrings.h
- Timestamp:
- May 24, 2014, 8:50:43 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/SmallStrings.h
r160344 r169316 87 87 #undef JSC_COMMON_STRINGS_ACCESSOR_DEFINITION 88 88 89 JSString* nullObjectString() const { return m_nullObjectString; } 90 JSString* undefinedObjectString() const { return m_undefinedObjectString; } 91 89 92 private: 90 93 static const unsigned singleCharacterStringCount = maxSingleCharacterString + 1; … … 99 102 JSC_COMMON_STRINGS_EACH_NAME(JSC_COMMON_STRINGS_ATTRIBUTE_DECLARATION) 100 103 #undef JSC_COMMON_STRINGS_ATTRIBUTE_DECLARATION 104 JSString* m_nullObjectString; 105 JSString* m_undefinedObjectString; 101 106 JSString* m_singleCharacterStrings[singleCharacterStringCount]; 102 107 OwnPtr<SmallStringsStorage> m_storage;
Note:
See TracChangeset
for help on using the changeset viewer.