Changeset 55262 in webkit for trunk/JavaScriptCore/runtime/RegExpConstructor.cpp
- Timestamp:
- Feb 25, 2010, 4:22:34 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/RegExpConstructor.cpp
r52028 r55262 114 114 // d->multiline is not needed, and remains uninitialized 115 115 116 set LazyCreationData(d);116 setSubclassData(d); 117 117 } 118 118 119 119 RegExpMatchesArray::~RegExpMatchesArray() 120 120 { 121 delete static_cast<RegExpConstructorPrivate*>( lazyCreationData());121 delete static_cast<RegExpConstructorPrivate*>(subclassData()); 122 122 } 123 123 124 124 void RegExpMatchesArray::fillArrayInstance(ExecState* exec) 125 125 { 126 RegExpConstructorPrivate* d = static_cast<RegExpConstructorPrivate*>( lazyCreationData());126 RegExpConstructorPrivate* d = static_cast<RegExpConstructorPrivate*>(subclassData()); 127 127 ASSERT(d); 128 128 … … 142 142 143 143 delete d; 144 set LazyCreationData(0);144 setSubclassData(0); 145 145 } 146 146
Note:
See TracChangeset
for help on using the changeset viewer.