Changeset 227609 in webkit for trunk/Source/JavaScriptCore/runtime/JSGlobalObject.cpp
- Timestamp:
- Jan 25, 2018, 9:21:09 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSGlobalObject.cpp
r227592 r227609 336 336 } 337 337 338 JSGlobalObject::JSGlobalObject(VM& vm, Structure* structure, const GlobalObjectMethodTable* globalObjectMethodTable , RefPtr<ThreadLocalCache> threadLocalCache)338 JSGlobalObject::JSGlobalObject(VM& vm, Structure* structure, const GlobalObjectMethodTable* globalObjectMethodTable) 339 339 : Base(vm, structure, 0) 340 340 , m_vm(vm) … … 354 354 , m_runtimeFlags() 355 355 , m_globalObjectMethodTable(globalObjectMethodTable ? globalObjectMethodTable : &s_globalObjectMethodTable) 356 , m_threadLocalCache(threadLocalCache ? WTFMove(threadLocalCache) : vm.defaultThreadLocalCache)357 356 { 358 357 }
Note:
See TracChangeset
for help on using the changeset viewer.