Changeset 26688 in webkit for trunk/JavaScriptCore/kjs/object.cpp
- Timestamp:
- Oct 16, 2007, 4:25:33 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/object.cpp
r26074 r26688 33 33 #include "PropertyNameArray.h" 34 34 #include <math.h> 35 #include <wtf/Assertions.h> 35 36 36 37 // maximum global call stack size. Protects against accidental or … … 65 66 JSValue *JSObject::call(ExecState *exec, JSObject *thisObj, const List &args) 66 67 { 67 assert(implementsCall());68 ASSERT(implementsCall()); 68 69 69 70 #if KJS_MAX_STACK > 0 … … 205 206 void JSObject::put(ExecState* exec, const Identifier &propertyName, JSValue *value, int attr) 206 207 { 207 assert(value);208 ASSERT(value); 208 209 209 210 // non-standard netscape extension … … 433 434 JSObject* JSObject::construct(ExecState*, const List& /*args*/) 434 435 { 435 assert(false);436 ASSERT(false); 436 437 return NULL; 437 438 } … … 449 450 JSValue *JSObject::callAsFunction(ExecState* /*exec*/, JSObject* /*thisObj*/, const List &/*args*/) 450 451 { 451 assert(false);452 ASSERT(false); 452 453 return NULL; 453 454 }
Note:
See TracChangeset
for help on using the changeset viewer.