Changeset 9891 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Jul 25, 2005, 4:35:36 PM (20 years ago)
Author:
mjs
Message:
  • fix mistake in last change that leads to assertion failure in the Development build
  • kjs/lookup.h: (KJS::lookupGetOwnValue):
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r9889 r9891  
     12005-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
    182005-07-24  Maciej Stachowiak  <[email protected]>
    29
  • trunk/JavaScriptCore/kjs/lookup.h

    r9889 r9891  
    213213      return thisObj->ParentImp::getOwnProperty(exec, propertyName, result);
    214214
    215     assert(!entry->attr & Function);
     215    assert(!(entry->attr & Function));
    216216
    217217    result = thisObj->getValueProperty(exec, entry->value);
Note: See TracChangeset for help on using the changeset viewer.