Changeset 32652 in webkit for trunk/JavaScriptCore/kjs/JSVariableObject.cpp
- Timestamp:
- Apr 28, 2008, 11:22:14 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSVariableObject.cpp
r32609 r32652 54 54 } 55 55 56 bool JSVariableObject::getPropertyAttributes( const Identifier& propertyName, unsigned& attributes) const56 bool JSVariableObject::getPropertyAttributes(ExecState* exec, const Identifier& propertyName, unsigned& attributes) const 57 57 { 58 58 size_t index = symbolTable().get(propertyName.ustring().rep()); … … 61 61 return true; 62 62 } 63 return JSObject::getPropertyAttributes( propertyName, attributes);63 return JSObject::getPropertyAttributes(exec, propertyName, attributes); 64 64 } 65 65
Note:
See TracChangeset
for help on using the changeset viewer.