/* +----------------------------------------------------------------------+ | PHP Version 5 | +----------------------------------------------------------------------+ | Copyright (c) 1997-2013 The PHP Group | +----------------------------------------------------------------------+ | http://www.opensource.org/licenses/mit-license.php MIT License | +----------------------------------------------------------------------+ | Author: Stefan Siegl | +----------------------------------------------------------------------+ */ #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& info); void php_v8js_array_access_setter(uint32_t index, v8::Local value, const v8::PropertyCallbackInfo& info); void php_v8js_array_access_length(v8::Local property, const v8::PropertyCallbackInfo& info); /* Named Property Handlers */ void php_v8js_array_access_named_getter(v8::Local property, const v8::PropertyCallbackInfo &info); #endif /* V8JS_ARRAY_ACCESS_H */