Changeset 9891 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jul 25, 2005, 4:35:36 PM (20 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r9889 r9891 1 2005-07-25 Maciej Stachowiak <[email protected]> 2 3 - fix mistake in last change that leads to assertion failure in the Development build 4 5 * kjs/lookup.h: 6 (KJS::lookupGetOwnValue): 7 1 8 2005-07-24 Maciej Stachowiak <[email protected]> 2 9 -
trunk/JavaScriptCore/kjs/lookup.h
r9889 r9891 213 213 return thisObj->ParentImp::getOwnProperty(exec, propertyName, result); 214 214 215 assert(! entry->attr & Function);215 assert(!(entry->attr & Function)); 216 216 217 217 result = thisObj->getValueProperty(exec, entry->value);
Note:
See TracChangeset
for help on using the changeset viewer.