mirror of
https://github.com/phpv8/v8js.git
synced 2024-12-31 22:31:52 +00:00
2b897e8bc4
This merges the distinct code path for the export of ArrayAccess capable PHP objects back into the "common" PHP object export code. Sole difference is that the ArrayAccess-style object has index property handlers as well as property bridging to Array.prototype.
29 lines
1.3 KiB
C
29 lines
1.3 KiB
C
/*
|
|
+----------------------------------------------------------------------+
|
|
| PHP Version 5 |
|
|
+----------------------------------------------------------------------+
|
|
| Copyright (c) 1997-2013 The PHP Group |
|
|
+----------------------------------------------------------------------+
|
|
| http://www.opensource.org/licenses/mit-license.php MIT License |
|
|
+----------------------------------------------------------------------+
|
|
| Author: Stefan Siegl <stesie@brokenpipe.de> |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#ifndef V8JS_ARRAY_ACCESS_H
|
|
#define V8JS_ARRAY_ACCESS_H
|
|
|
|
/* Indexed Property Handlers */
|
|
void php_v8js_array_access_getter(uint32_t index,
|
|
const v8::PropertyCallbackInfo<v8::Value>& info);
|
|
void php_v8js_array_access_setter(uint32_t index, v8::Local<v8::Value> value,
|
|
const v8::PropertyCallbackInfo<v8::Value>& info);
|
|
void php_v8js_array_access_length(v8::Local<v8::String> property,
|
|
const v8::PropertyCallbackInfo<v8::Value>& info);
|
|
|
|
/* Named Property Handlers */
|
|
void php_v8js_array_access_named_getter(v8::Local<v8::String> property,
|
|
const v8::PropertyCallbackInfo<v8::Value> &info);
|
|
|
|
#endif /* V8JS_ARRAY_ACCESS_H */
|