Changeset 47780 in webkit for trunk/JavaScriptCore/runtime/JSVariableObject.cpp
- Timestamp:
- Aug 26, 2009, 9:52:15 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSVariableObject.cpp
r37989 r47780 31 31 32 32 #include "PropertyNameArray.h" 33 #include "PropertyDescriptor.h" 33 34 34 35 namespace JSC { … … 68 69 } 69 70 71 bool JSVariableObject::symbolTableGet(const Identifier& propertyName, PropertyDescriptor& descriptor) 72 { 73 SymbolTableEntry entry = symbolTable().inlineGet(propertyName.ustring().rep()); 74 if (!entry.isNull()) { 75 descriptor.setDescriptor(registerAt(entry.getIndex()).jsValue(), entry.getAttributes() | DontDelete); 76 return true; 77 } 78 return false; 79 } 80 70 81 } // namespace JSC
Note:
See TracChangeset
for help on using the changeset viewer.