Changeset 15385 in webkit for trunk/JavaScriptCore/kjs/scope_chain.cpp
- Timestamp:
- Jul 12, 2006, 3:01:06 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/scope_chain.cpp
r15225 r15385 38 38 #ifndef NDEBUG 39 39 40 void ScopeChain::print( ExecState* exec)40 void ScopeChain::print() 41 41 { 42 42 ScopeChainIterator scopeEnd = end(); … … 44 44 JSObject* o = *scopeIter; 45 45 ReferenceList propertyList; 46 o->getPropertyList( exec,propertyList, false);46 o->getPropertyList(propertyList, false); 47 47 ReferenceListIterator propEnd = propertyList.end(); 48 48
Note:
See TracChangeset
for help on using the changeset viewer.