Changeset 47022 in webkit for trunk/JavaScriptCore/debugger
- Timestamp:
- Aug 10, 2009, 9:35:02 PM (16 years ago)
- Location:
- trunk/JavaScriptCore/debugger
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/debugger/DebuggerActivation.cpp
r43122 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 … … 39 39 } 40 40 41 void DebuggerActivation::mark ()41 void DebuggerActivation::markChildren(MarkStack& markStack) 42 42 { 43 JSObject::mark(); 44 if (m_activation && !m_activation->marked()) 45 m_activation->mark(); 43 JSObject::markChildren(markStack); 44 45 if (m_activation) 46 markStack.append(m_activation); 46 47 } 47 48 -
trunk/JavaScriptCore/debugger/DebuggerActivation.h
r43122 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 … … 37 37 DebuggerActivation(JSObject*); 38 38 39 virtual void mark ();39 virtual void markChildren(MarkStack&); 40 40 virtual UString className() const; 41 41 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
Note:
See TracChangeset
for help on using the changeset viewer.