]> git.saurik.com Git - apple/javascriptcore.git/blobdiff - runtime/ScopeChainMark.h
JavaScriptCore-1097.3.tar.gz
[apple/javascriptcore.git] / runtime / ScopeChainMark.h
index b80b8ef9bf6e55f1c7af2c0a2edfa1ea2c906017..35701f11d05339ca04a2c1943277c73eef48dde7 100644 (file)
@@ -1,5 +1,5 @@
 /*
- *  Copyright (C) 2003, 2006, 2008 Apple Inc. All rights reserved.
+ *  Copyright (C) 2003, 2006, 2008, 2009 Apple Inc. All rights reserved.
  *
  *  This library is free software; you can redistribute it and/or
  *  modify it under the terms of the GNU Library General Public
 
 namespace JSC {
 
-    inline void ScopeChain::mark() const
-    {
-        for (ScopeChainNode* n = m_node; n; n = n->next) {
-            JSObject* o = n->object;
-            if (!o->marked())
-                o->mark();
-        }
-    }
-
 } // namespace JSC
 
 #endif // ScopeChainMark_h