Changeset 159531 in webkit for trunk/Source/JavaScriptCore/API/JSObjectRef.cpp
- Timestamp:
- Nov 19, 2013, 4:29:43 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/API/JSObjectRef.cpp
r159459 r159531 507 507 } 508 508 509 bool JSObjectIsFunction(JSContextRef ctx, JSObjectRef object)509 bool JSObjectIsFunction(JSContextRef, JSObjectRef object) 510 510 { 511 511 if (!object) 512 512 return false; 513 APIEntryShim entryShim(toJS(ctx));514 513 CallData callData; 515 514 JSCell* cell = toJS(object); … … 607 606 return 0; 608 607 } 608 JSObject* jsObject = toJS(object); 609 609 ExecState* exec = toJS(ctx); 610 610 APIEntryShim entryShim(exec); … … 612 612 VM* vm = &exec->vm(); 613 613 614 JSObject* jsObject = toJS(object);615 614 JSPropertyNameArrayRef propertyNames = new OpaqueJSPropertyNameArray(vm); 616 615 PropertyNameArray array(vm);
Note:
See TracChangeset
for help on using the changeset viewer.