Changeset 28110 in webkit for trunk/JavaScriptCore/kjs/object.cpp
- Timestamp:
- Nov 28, 2007, 5:12:03 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/object.cpp
r28106 r28110 114 114 // ------------------------------ JSObject ------------------------------------ 115 115 116 void JSObject::markChildren(MarkStack& stack) 117 { 116 void JSObject::mark() 117 { 118 JSCell::mark(); 119 118 120 #if JAVASCRIPT_MARK_TRACING 119 121 static int markStackDepth = 0; … … 125 127 #endif 126 128 127 stack.push(_proto); 128 _prop.markChildren(stack); 129 JSValue *proto = _proto; 130 if (!proto->marked()) 131 proto->mark(); 132 133 _prop.mark(); 129 134 130 135 #if JAVASCRIPT_MARK_TRACING
Note:
See TracChangeset
for help on using the changeset viewer.