Changeset 29065 in webkit for trunk/JavaScriptCore/kjs/scope_chain.cpp
- Timestamp:
- Jan 1, 2008, 11:13:40 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/scope_chain.cpp
r28079 r29065 28 28 namespace KJS { 29 29 30 void ScopeChain::push(const ScopeChain &c)31 {32 ScopeChainNode **tail = &_node;33 for (ScopeChainNode *n = c._node; n; n = n->next) {34 ScopeChainNode *newNode = new ScopeChainNode(*tail, n->object);35 *tail = newNode;36 tail = &newNode->next;37 }38 }39 40 30 #ifndef NDEBUG 41 31
Note:
See TracChangeset
for help on using the changeset viewer.