Changeset 57055 in webkit for trunk/JavaScriptCore/runtime/JSString.h
- Timestamp:
- Apr 3, 2010, 11:53:46 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSString.h
r57019 r57055 117 117 , m_fiberCount(0) 118 118 { 119 ASSERT(!m_value.isNull()); 119 120 Heap::heap(this)->reportExtraMemoryCost(value.cost()); 120 121 } … … 127 128 , m_fiberCount(0) 128 129 { 130 ASSERT(!m_value.isNull()); 129 131 } 130 132 JSString(JSGlobalData* globalData, PassRefPtr<UString::Rep> value, HasOtherOwnerType) … … 134 136 , m_fiberCount(0) 135 137 { 138 ASSERT(!m_value.isNull()); 136 139 } 137 140 JSString(JSGlobalData* globalData, PassRefPtr<Rope> rope) … … 203 206 , m_fiberCount(0) 204 207 { 208 ASSERT(!m_value.isNull()); 205 209 // nasty hack because we can't union non-POD types 206 210 m_other.m_finalizerCallback = finalizer;
Note:
See TracChangeset
for help on using the changeset viewer.