Index: include/v8.h |
diff --git a/include/v8.h b/include/v8.h |
index 25a1d58fb9e0ed1f46c389dfee0bdab7e459a10f..29f2508fd638c4d2187e748a1265a31b03303045 100644 |
--- a/include/v8.h |
+++ b/include/v8.h |
@@ -2962,7 +2962,15 @@ class V8_EXPORT Array : public Object { |
*/ |
static Local<Array> New(Isolate* isolate, int length = 0); |
+ /** |
+ * Access to Array Iterator methods |
+ */ |
+ static Local<Function> GetKeysIterator(Isolate* isolate); |
+ static Local<Function> GetValuesIterator(Isolate* isolate); |
+ static Local<Function> GetEntriesIterator(Isolate* isolate); |
+ |
V8_INLINE static Array* Cast(Value* obj); |
+ |
private: |
Array(); |
static void CheckCast(Value* obj); |