Changeset 93835 in webkit for trunk/Source/JavaScriptCore/runtime/JSAPIValueWrapper.h
- Timestamp:
- Aug 25, 2011, 4:30:14 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSAPIValueWrapper.h
r92706 r93835 25 25 26 26 #include "JSCell.h" 27 #include "JSValue.h" 27 28 #include "CallFrame.h" 28 29 #include "Structure.h" … … 51 52 } 52 53 54 protected: 55 void finishCreation(ExecState* exec, JSValue value) 56 { 57 Base::finishCreation(exec->globalData()); 58 m_value.set(exec->globalData(), this, value); 59 ASSERT(!value.isCell()); 60 } 61 53 62 private: 54 63 JSAPIValueWrapper(ExecState* exec, JSValue value) 55 64 : JSCell(exec->globalData(), exec->globalData().apiWrapperStructure.get()) 56 65 { 57 m_value.set(exec->globalData(), this, value); 58 ASSERT(!value.isCell()); 66 finishCreation(exec, value); 59 67 } 60 68
Note:
See TracChangeset
for help on using the changeset viewer.