Changeset 51971 in webkit for trunk/JavaScriptCore/runtime/JSVariableObject.cpp
- Timestamp:
- Dec 10, 2009, 4:06:15 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSVariableObject.cpp
r48336 r51971 54 54 } 55 55 56 bool JSVariableObject::getPropertyAttributes(ExecState* exec, const Identifier& propertyName, unsigned& attributes) const57 {58 SymbolTableEntry entry = symbolTable().get(propertyName.ustring().rep());59 if (!entry.isNull()) {60 attributes = entry.getAttributes() | DontDelete;61 return true;62 }63 return JSObject::getPropertyAttributes(exec, propertyName, attributes);64 }65 66 56 bool JSVariableObject::isVariableObject() const 67 57 {
Note:
See TracChangeset
for help on using the changeset viewer.