Changeset 11908 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jan 6, 2006, 2:44:47 AM (19 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r11903 r11908 1 2006-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 1 8 2006-01-05 Maciej Stachowiak <[email protected]> 2 9 -
trunk/JavaScriptCore/kjs/function.cpp
r11903 r11908 536 536 // There's no way that an activation object can have a prototype or getter/setter properties 537 537 assert(!_prop.hasGetterSetterProperties()); 538 assert(! _proto);538 assert(!prototype()); 539 539 540 540 _prop.put(propertyName, value, attr, (attr == None || attr == DontDelete));
Note:
See TracChangeset
for help on using the changeset viewer.