[webkit-changes] cvs commit: JavaScriptCore/kjs function.cpp

Alexey ap at opensource.apple.com
Fri Jan 6 02:44:47 PST 2006


ap          06/01/06 02:44:47

  Modified:    .        ChangeLog
               kjs      function.cpp
  Log:
  	- fix development build failure from the previous checkin
  
          * kjs/function.cpp:
          (KJS::ActivationImp::put): Use prototype() accessor in assert.
  
  Revision  Changes    Path
  1.948     +7 -0      JavaScriptCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/JavaScriptCore/ChangeLog,v
  retrieving revision 1.947
  retrieving revision 1.948
  diff -u -r1.947 -r1.948
  --- ChangeLog	6 Jan 2006 08:32:15 -0000	1.947
  +++ ChangeLog	6 Jan 2006 10:44:45 -0000	1.948
  @@ -1,3 +1,10 @@
  +2006-01-06  Maciej Stachowiak  <mjs at apple.com>
  +
  +	- fix development build failure from the previous checkin
  +
  +        * kjs/function.cpp:
  +        (KJS::ActivationImp::put): Use prototype() accessor in assert.
  +
   2006-01-05  Maciej Stachowiak  <mjs at apple.com>
   
           Reviewed by Eric.
  
  
  
  1.66      +1 -1      JavaScriptCore/kjs/function.cpp
  
  Index: function.cpp
  ===================================================================
  RCS file: /cvs/root/JavaScriptCore/kjs/function.cpp,v
  retrieving revision 1.65
  retrieving revision 1.66
  diff -u -r1.65 -r1.66
  --- function.cpp	6 Jan 2006 08:32:18 -0000	1.65
  +++ function.cpp	6 Jan 2006 10:44:47 -0000	1.66
  @@ -535,7 +535,7 @@
   {
     // There's no way that an activation object can have a prototype or getter/setter properties
     assert(!_prop.hasGetterSetterProperties());
  -  assert(!_proto);
  +  assert(!prototype());
   
     _prop.put(propertyName, value, attr, (attr == None || attr == DontDelete));
   }
  
  
  



More information about the webkit-changes mailing list