Changeset 11908 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Jan 6, 2006, 2:44:47 AM (19 years ago)
Author:
ap
Message:
  • fix development build failure from the previous checkin
  • kjs/function.cpp: (KJS::ActivationImp::put): Use prototype() accessor in assert.
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r11903 r11908  
     12006-01-06  Maciej Stachowiak  <[email protected]>
     2
     3        - fix development build failure from the previous checkin
     4
     5        * kjs/function.cpp:
     6        (KJS::ActivationImp::put): Use prototype() accessor in assert.
     7
    182006-01-05  Maciej Stachowiak  <[email protected]>
    29
  • trunk/JavaScriptCore/kjs/function.cpp

    r11903 r11908  
    536536  // There's no way that an activation object can have a prototype or getter/setter properties
    537537  assert(!_prop.hasGetterSetterProperties());
    538   assert(!_proto);
     538  assert(!prototype());
    539539
    540540  _prop.put(propertyName, value, attr, (attr == None || attr == DontDelete));
Note: See TracChangeset for help on using the changeset viewer.