Changeset 100672 in webkit for trunk/Source/JavaScriptCore/runtime/JSActivation.cpp
- Timestamp:
- Nov 17, 2011, 2:04:07 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSActivation.cpp
r100006 r100672 57 57 // doesn't know about SharedSymbolTable 58 58 static_cast<SharedSymbolTable*>(m_symbolTable)->ref(); 59 } 60 61 JSActivation::~JSActivation() 62 { 63 static_cast<SharedSymbolTable*>(m_symbolTable)->deref(); 59 callFrame->globalData().heap.addFinalizer(this, &finalize); 60 } 61 62 void JSActivation::finalize(JSCell* cell) 63 { 64 static_cast<SharedSymbolTable*>(jsCast<JSActivation*>(cell)->m_symbolTable)->deref(); 64 65 } 65 66
Note:
See TracChangeset
for help on using the changeset viewer.