Changeset 93835 in webkit for trunk/Source/JavaScriptCore/runtime/Executable.h
- Timestamp:
- Aug 25, 2011, 4:30:14 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Executable.h
r93378 r93835 59 59 , m_numParametersForConstruct(numParameters) 60 60 { 61 finishCreation(globalData); 62 } 63 64 void finishCreation(JSGlobalData& globalData) 65 { 66 Base::finishCreation(globalData); 61 67 #if ENABLE(JIT) 62 68 Weak<ExecutableBase> finalizer(globalData, this, executableFinalizer()); … … 506 512 507 513 protected: 508 void constructorBody(JSGlobalData& globalData, const Identifier& name, int firstLine, int lastLine)514 void finishCreation(JSGlobalData& globalData, const Identifier& name, int firstLine, int lastLine) 509 515 { 510 516 m_firstLine = firstLine;
Note:
See TracChangeset
for help on using the changeset viewer.