Push version 1.2.10 to trunk.

Improved debugger support.

Fixed bug in exception message reporting (issue 390).

Improved overall performance.


git-svn-id: http://v8.googlecode.com/svn/trunk@2291 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
diff --git a/include/v8.h b/include/v8.h
index e7b2677..8f22c81 100644
--- a/include/v8.h
+++ b/include/v8.h
@@ -1176,6 +1176,12 @@
  public:
   uint32_t Length() const;
 
+  /**
+   * Clones an element at index |index|.  Returns an empty
+   * handle if cloning fails (for any reason).
+   */
+  Local<Object> CloneElementAt(uint32_t index);
+
   static Local<Array> New(int length = 0);
   static Array* Cast(Value* obj);
  private: