Changeset 133975 in webkit for trunk/Source/JavaScriptCore/runtime/Executable.cpp
- Timestamp:
- Nov 8, 2012, 5:12:47 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Executable.cpp
r133688 r133975 621 621 } 622 622 623 void FunctionExecutable::clearUnlinkedCode IfNotCompiling()623 void FunctionExecutable::clearUnlinkedCodeForRecompilationIfNotCompiling() 624 624 { 625 625 if (isCompiling()) 626 626 return; 627 m_unlinkedExecutable->clearCode ();627 m_unlinkedExecutable->clearCodeForRecompilation(); 628 628 } 629 629 … … 632 632 m_codeBlockForCall.clear(); 633 633 m_codeBlockForConstruct.clear(); 634 m_unlinkedExecutable->clearCode();635 634 Base::clearCode(); 636 635 }
Note:
See TracChangeset
for help on using the changeset viewer.