Changeset 156668 in webkit for trunk/Source/JavaScriptCore/runtime/RegExpObject.cpp
- Timestamp:
- Sep 30, 2013, 11:58:51 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/RegExpObject.cpp
r155143 r156668 64 64 */ 65 65 66 RegExpObject::RegExpObject( JSGlobalObject* globalObject, Structure* structure, RegExp* regExp)67 : JSNonFinalObject( globalObject->vm(), structure)68 , m_regExp( globalObject->vm(), this, regExp)66 RegExpObject::RegExpObject(VM& vm, Structure* structure, RegExp* regExp) 67 : JSNonFinalObject(vm, structure) 68 , m_regExp(vm, this, regExp) 69 69 , m_lastIndexIsWritable(true) 70 70 { … … 72 72 } 73 73 74 void RegExpObject::finishCreation( JSGlobalObject* globalObject)75 { 76 Base::finishCreation( globalObject->vm());74 void RegExpObject::finishCreation(VM& vm) 75 { 76 Base::finishCreation(vm); 77 77 ASSERT(inherits(info())); 78 78 }
Note:
See TracChangeset
for help on using the changeset viewer.