Changeset 39951 in webkit for trunk/JavaScriptCore/runtime
- Timestamp:
- Jan 15, 2009, 3:49:55 PM (16 years ago)
- Location:
- trunk/JavaScriptCore/runtime
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Collector.cpp
r39851 r39951 987 987 m_globalData->interpreter->registerFile().markCallFrames(this); 988 988 m_globalData->smallStrings.mark(); 989 if (m_globalData->scopeNodeBeingReparsed) 990 m_globalData->scopeNodeBeingReparsed->mark(); 989 991 990 992 JAVASCRIPTCORE_GC_MARKED(); -
trunk/JavaScriptCore/runtime/JSGlobalData.cpp
r39755 r39951 92 92 , isSharedInstance(isShared) 93 93 , clientData(0) 94 , scopeNodeBeingReparsed(0) 94 95 , heap(this) 95 96 { -
trunk/JavaScriptCore/runtime/JSGlobalData.h
r39670 r39951 47 47 class Heap; 48 48 class IdentifierTable; 49 class Interpreter; 49 50 class JSGlobalObject; 50 51 class JSObject; 51 52 class Lexer; 52 class Interpreter;53 53 class Parser; 54 54 class ParserRefCounted; 55 class ScopeNode; 55 56 class Structure; 56 57 class UString; … … 121 122 HashSet<JSObject*> arrayVisitedElements; 122 123 124 ScopeNode* scopeNodeBeingReparsed; 125 123 126 Heap heap; 124 127 #if ENABLE(ASSEMBLER)
Note:
See TracChangeset
for help on using the changeset viewer.