Changeset 47022 in webkit for trunk/JavaScriptCore/runtime/JSNotAnObject.cpp
- Timestamp:
- Aug 10, 2009, 9:35:02 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSNotAnObject.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 … … 75 75 76 76 // Marking 77 void JSNotAnObject::mark ()77 void JSNotAnObject::markChildren(MarkStack& markStack) 78 78 { 79 JSCell::mark(); 80 if (!m_exception->marked()) 81 m_exception->mark(); 79 JSObject::markChildren(markStack); 80 markStack.append(m_exception); 82 81 } 83 82
Note:
See TracChangeset
for help on using the changeset viewer.