Changeset 28636 in webkit for trunk/JavaScriptCore/API/testapi.c
- Timestamp:
- Dec 11, 2007, 5:32:11 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/testapi.c
r27885 r28636 334 334 static void Base_finalize(JSObjectRef object) 335 335 { 336 UNUSED_PARAM(object); 336 337 if (TestInitializeFinalize) { 337 338 ASSERT((void*)4 == JSObjectGetPrivate(object)); … … 483 484 JSObjectRef arrayConstructor = JSValueToObject(context, JSObjectGetProperty(context, globalObject, array, NULL), NULL); 484 485 JSStringRelease(array); 486 487 UNUSED_PARAM(arrayConstructor); 485 488 ASSERT(arrayConstructor); 486 489 } … … 516 519 { 517 520 JSObjectRef o = JSObjectMake(context, Derived_class(context), (void*)1); 521 UNUSED_PARAM(o); 518 522 ASSERT(JSObjectGetPrivate(o) == (void*)3); 519 523 }
Note:
See TracChangeset
for help on using the changeset viewer.