Changeset 47022 in webkit for trunk/JavaScriptCore/runtime/JSPropertyNameIterator.cpp
- Timestamp:
- Aug 10, 2009, 9:35:02 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSPropertyNameIterator.cpp
r44224 r47022 1 1 /* 2 * Copyright (C) 2008 Apple Inc. All rights reserved.2 * Copyright (C) 2008, 2009 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 74 74 } 75 75 76 void JSPropertyNameIterator::mark ()76 void JSPropertyNameIterator::markChildren(MarkStack& markStack) 77 77 { 78 JSCell::mark ();79 if (m_object && !m_object->marked())80 m _object->mark();78 JSCell::markChildren(markStack); 79 if (m_object) 80 markStack.append(m_object); 81 81 } 82 82
Note:
See TracChangeset
for help on using the changeset viewer.