Changeset 47022 in webkit for trunk/JavaScriptCore/runtime/JSStaticScopeObject.cpp
- Timestamp:
- Aug 10, 2009, 9:35:02 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSStaticScopeObject.cpp
r44757 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 … … 32 32 ASSERT_CLASS_FITS_IN_CELL(JSStaticScopeObject); 33 33 34 void JSStaticScopeObject::mark ()34 void JSStaticScopeObject::markChildren(MarkStack& markStack) 35 35 { 36 JSVariableObject::mark(); 37 38 if (!d()->registerStore.marked()) 39 d()->registerStore.mark(); 36 JSVariableObject::markChildren(markStack); 37 markStack.append(d()->registerStore.jsValue()); 40 38 } 41 39
Note:
See TracChangeset
for help on using the changeset viewer.