Index: src/factory.h |
diff --git a/src/factory.h b/src/factory.h |
index d059b108884af761357de7d2b642db1d08010b3c..dc258701bcd6c5259dd046d0e6ab9143a843a814 100644 |
--- a/src/factory.h |
+++ b/src/factory.h |
@@ -85,6 +85,9 @@ class V8_EXPORT_PRIVATE Factory final { |
// Create a new PrototypeInfo struct. |
Handle<PrototypeInfo> NewPrototypeInfo(); |
+ // Create a new Tuple2 struct. |
+ Handle<Tuple2> NewTuple2(Handle<Object> value1, Handle<Object> value2); |
+ |
// Create a new Tuple3 struct. |
Handle<Tuple3> NewTuple3(Handle<Object> value1, Handle<Object> value2, |
Handle<Object> value3); |