Changeset 15225 in webkit for trunk/JavaScriptCore/API/testapi.c
- Timestamp:
- Jul 7, 2006, 7:25:55 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/testapi.c
r15224 r15225 123 123 124 124 static bool didInitialize = false; 125 static void MyObject_initialize(JS ObjectRef object)125 static void MyObject_initialize(JSContextRef context, JSObjectRef object) 126 126 { 127 127 UNUSED_PARAM(context); … … 594 594 JSPropertyEnumeratorRef enumerator = JSObjectCreatePropertyEnumerator(context, o); 595 595 int count = 0; 596 while (JSPropertyEnumeratorGetNext( context,enumerator))596 while (JSPropertyEnumeratorGetNext(enumerator)) 597 597 ++count; 598 598 JSPropertyEnumeratorRelease(enumerator);
Note:
See TracChangeset
for help on using the changeset viewer.