Changeset 36977 in webkit for trunk/JavaScriptCore/kjs/JSObject.cpp
- Timestamp:
- Sep 26, 2008, 7:36:15 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSObject.cpp
r36766 r36977 210 210 // Look in the static hashtable of properties 211 211 const HashEntry* entry = findPropertyHashEntry(exec, propertyName); 212 if (entry && entry->attributes & DontDelete)212 if (entry && entry->attributes() & DontDelete) 213 213 return false; // this builtin property can't be deleted 214 214 … … 419 419 const HashEntry* entry = findPropertyHashEntry(exec, propertyName); 420 420 if (entry) { 421 attributes = entry->attributes ;421 attributes = entry->attributes(); 422 422 return true; 423 423 }
Note:
See TracChangeset
for help on using the changeset viewer.