Changeset 190113 in webkit for trunk/Source/JavaScriptCore/jit/JITThunks.cpp
- Timestamp:
- Sep 22, 2015, 5:21:31 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITThunks.cpp
r189616 r190113 77 77 } 78 78 79 void JITThunks::finalize( JSCell*& cell, void*)79 void JITThunks::finalize(Handle<Unknown> handle, void*) 80 80 { 81 auto* nativeExecutable = jsCast<NativeExecutable*>( cell);81 auto* nativeExecutable = jsCast<NativeExecutable*>(handle.get().asCell()); 82 82 weakRemove(*m_hostFunctionStubMap, std::make_pair(nativeExecutable->function(), nativeExecutable->constructor()), nativeExecutable); 83 83 }
Note:
See TracChangeset
for help on using the changeset viewer.