Changeset 41126 in webkit for trunk/JavaScriptCore/runtime/JSGlobalData.cpp
- Timestamp:
- Feb 22, 2009, 3:26:07 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSGlobalData.cpp
r40993 r41126 66 66 67 67 JSGlobalData::JSGlobalData(bool isShared) 68 : initializingLazyNumericCompareFunction(false) 68 : isSharedInstance(isShared) 69 , clientData(0) 69 70 , interpreter(new Interpreter) 70 71 , exception(noValue()) 72 , initializingLazyNumericCompareFunction(false) 71 73 , arrayTable(new HashTable(JSC::arrayTable)) 72 74 , dateTable(new HashTable(JSC::dateTable)) … … 88 90 , propertyNames(new CommonIdentifiers(this)) 89 91 , emptyList(new ArgList) 92 , lexer(new Lexer(this)) 93 , parser(new Parser) 90 94 , newParserObjects(0) 91 95 , parserObjectExtraRefCounts(0) 92 , lexer(new Lexer(this))93 , parser(new Parser)94 96 , head(0) 95 97 , dynamicGlobalObject(0) 96 , isSharedInstance(isShared)97 , clientData(0)98 98 , scopeNodeBeingReparsed(0) 99 99 , heap(this)
Note:
See TracChangeset
for help on using the changeset viewer.