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

Unified Diff: src/interpreter/interpreter.h

Issue 1386313005: [Interpreter] Adds Object literal support. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@int_literal_2
Patch Set: Created 5 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/interpreter/interpreter.h
diff --git a/src/interpreter/interpreter.h b/src/interpreter/interpreter.h
index c32b6831d0aa770ba6e86ee7b9332e2390b43160..3ae01adc56f173cf3a32244efd80f0c825d2d15f 100644
--- a/src/interpreter/interpreter.h
+++ b/src/interpreter/interpreter.h
@@ -66,6 +66,10 @@ class Interpreter {
void DoPropertyStoreIC(Callable ic,
compiler::InterpreterAssembler* assembler);
+ // Generates code create a literal using via |function_id|.
Michael Starzinger 2015/10/13 11:06:44 nit: Missing "to" and redundant "via" in this sent
rmcilroy 2015/10/13 17:04:53 Done.
+ void DoCreateLiteral(Runtime::FunctionId function_id,
+ compiler::InterpreterAssembler* assembler);
+
bool IsInterpreterTableInitialized(Handle<FixedArray> handler_table);
Isolate* isolate_;

Powered by Google App Engine
This is Rietveld 408576698