Changeset 27199 in webkit for trunk/JavaScriptCore/kjs/function.cpp
- Timestamp:
- Oct 28, 2007, 7:00:57 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/function.cpp
r27198 r27199 393 393 ActivationImp::ActivationImp(FunctionImp* function, const List& arguments) 394 394 : d(new ActivationImpPrivate(function, arguments)) 395 , symbolTable(&function->body->symbolTable())395 , m_symbolTable(&function->body->symbolTable()) 396 396 { 397 397 } … … 423 423 // it's more efficient to just get and check for a special empty 424 424 // value than to do a separate contains check 425 size_t index = symbolTable->get(propertyName.ustring().rep());425 size_t index = m_symbolTable->get(propertyName.ustring().rep()); 426 426 if (index != missingSymbolMarker()) { 427 427 slot.setValueSlot(this, &d->localStorage[index].value); … … 448 448 return false; 449 449 450 if ( symbolTable->contains(propertyName.ustring().rep()))450 if (m_symbolTable->contains(propertyName.ustring().rep())) 451 451 return false; 452 452 … … 462 462 // it's more efficient to just get and check for a special empty 463 463 // value than to do a separate contains check 464 size_t index = symbolTable->get(propertyName.ustring().rep());464 size_t index = m_symbolTable->get(propertyName.ustring().rep()); 465 465 if (index != missingSymbolMarker()) { 466 466 LocalStorageEntry& entry = d->localStorage[index];
Note:
See TracChangeset
for help on using the changeset viewer.