Changeset 159459 in webkit for trunk/Source/JavaScriptCore/API/JSObjectRef.cpp
- Timestamp:
- Nov 18, 2013, 3:07:03 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/API/JSObjectRef.cpp
r157653 r159459 507 507 } 508 508 509 bool JSObjectIsFunction(JSContextRef , JSObjectRef object)509 bool JSObjectIsFunction(JSContextRef ctx, JSObjectRef object) 510 510 { 511 511 if (!object) 512 512 return false; 513 APIEntryShim entryShim(toJS(ctx)); 513 514 CallData callData; 514 515 JSCell* cell = toJS(object); … … 606 607 return 0; 607 608 } 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); 614 615 JSPropertyNameArrayRef propertyNames = new OpaqueJSPropertyNameArray(vm); 615 616 PropertyNameArray array(vm);
Note:
See TracChangeset
for help on using the changeset viewer.