v8.h | v8.h | |||
---|---|---|---|---|
skipping to change at line 1583 | skipping to change at line 1583 | |||
V8EXPORT void SetIndexedPropertiesToExternalArrayData( | V8EXPORT void SetIndexedPropertiesToExternalArrayData( | |||
void* data, | void* data, | |||
ExternalArrayType array_type, | ExternalArrayType array_type, | |||
int number_of_elements); | int number_of_elements); | |||
V8EXPORT bool HasIndexedPropertiesInExternalArrayData(); | V8EXPORT bool HasIndexedPropertiesInExternalArrayData(); | |||
V8EXPORT void* GetIndexedPropertiesExternalArrayData(); | V8EXPORT void* GetIndexedPropertiesExternalArrayData(); | |||
V8EXPORT ExternalArrayType GetIndexedPropertiesExternalArrayDataType(); | V8EXPORT ExternalArrayType GetIndexedPropertiesExternalArrayDataType(); | |||
V8EXPORT int GetIndexedPropertiesExternalArrayDataLength(); | V8EXPORT int GetIndexedPropertiesExternalArrayDataLength(); | |||
/** | /** | |||
* Checks whether a callback is set by the | ||||
* ObjectTemplate::SetCallAsFunctionHandler method. | ||||
* When an Object is callable this method returns true. | ||||
*/ | ||||
V8EXPORT bool IsCallable(); | ||||
/** | ||||
* Call an Object as a function if a callback is set by the | * Call an Object as a function if a callback is set by the | |||
* ObjectTemplate::SetCallAsFunctionHandler method. | * ObjectTemplate::SetCallAsFunctionHandler method. | |||
*/ | */ | |||
V8EXPORT Local<Value> CallAsFunction(Handle<Object> recv, | V8EXPORT Local<Value> CallAsFunction(Handle<Object> recv, | |||
int argc, | int argc, | |||
Handle<Value> argv[]); | Handle<Value> argv[]); | |||
/** | /** | |||
* Call an Object as a consturctor if a callback is set by the | * Call an Object as a consturctor if a callback is set by the | |||
* ObjectTemplate::SetCallAsFunctionHandler method. | * ObjectTemplate::SetCallAsFunctionHandler method. | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 7 lines changed or added | |||