Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(193)

Unified Diff: src/factory.h

Issue 2419513002: [ic] Support data handlers that represent loads from prototypes. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/factory.h
diff --git a/src/factory.h b/src/factory.h
index 3d73c334ab9133dbf3dc53cc9a78dfb4e1c7c24c..57e68bd8cc9d01925b7874735fa1350e8bd837b5 100644
--- a/src/factory.h
+++ b/src/factory.h
@@ -69,6 +69,10 @@ class Factory final {
// Create a new PrototypeInfo struct.
Handle<PrototypeInfo> NewPrototypeInfo();
+ // Create a new Tuple3 struct.
+ Handle<Tuple3> NewTuple3(Handle<Object> value1, Handle<Object> value2,
+ Handle<Object> value3);
+
// Create a new ContextExtension struct.
Handle<ContextExtension> NewContextExtension(Handle<ScopeInfo> scope_info,
Handle<Object> extension);

Powered by Google App Engine
This is Rietveld 408576698