Changeset 427 for trunk/JavaScriptCore/kjs/JSGlobalData.cpp
- Timestamp:
- 08/01/08 14:47:24 (5 months ago)
- Files:
-
- trunk/JavaScriptCore/kjs/JSGlobalData.cpp (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/JavaScriptCore/kjs/JSGlobalData.cpp
r424 r427 33 33 #include "CommonIdentifiers.h" 34 34 #include "JSClassRef.h" 35 #include "JSLock.h"36 35 #include "Machine.h" 37 36 #include "Parser.h" … … 41 40 #include "nodes.h" 42 41 43 #if USE(MULTIPLE_THREADS)42 #if ENABLE(JSC_MULTIPLE_THREADS) 44 43 #include <wtf/Threading.h> 45 44 #endif … … 60 59 : machine(new Machine) 61 60 , heap(new Heap(this)) 62 #if USE(MULTIPLE_THREADS)61 #if ENABLE(JSC_MULTIPLE_THREADS) 63 62 , arrayTable(new HashTable(KJS::arrayTable)) 64 63 , dateTable(new HashTable(KJS::dateTable)) … … 86 85 , parser(new Parser) 87 86 , head(0) 88 , isSharedInstance(false)89 87 { 90 88 } … … 97 95 machine = 0; 98 96 99 #if USE(MULTIPLE_THREADS)97 #if ENABLE(JSC_MULTIPLE_THREADS) 100 98 arrayTable->deleteTable(); 101 99 dateTable->deleteTable();
