Changeset 57879 in webkit for trunk/JavaScriptCore/runtime/JSGlobalData.cpp
- Timestamp:
- Apr 20, 2010, 1:30:12 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSGlobalData.cpp
r57853 r57879 50 50 #include "Nodes.h" 51 51 #include "Parser.h" 52 #include <wtf/WTFThreadData.h> 52 53 53 54 #if ENABLE(JSC_MULTIPLE_THREADS) … … 204 205 { 205 206 JSGlobalData* globalData = new JSGlobalData(false); 206 setDefaultIdentifierTable(globalData->identifierTable); 207 setCurrentIdentifierTable(globalData->identifierTable); 207 wtfThreadData().initializeIdentifierTable(globalData->identifierTable); 208 208 return adoptRef(globalData); 209 209 }
Note:
See TracChangeset
for help on using the changeset viewer.