Index: src/interpreter/interpreter.h |
diff --git a/src/interpreter/interpreter.h b/src/interpreter/interpreter.h |
index 5ab5e3705963d6a76c08f579cc9599d4fcd6f61c..dd7d122ee597a9742a47e095c8eb39c7eb4f5211 100644 |
--- a/src/interpreter/interpreter.h |
+++ b/src/interpreter/interpreter.h |
@@ -16,6 +16,7 @@ namespace v8 { |
namespace internal { |
class Isolate; |
+class Callable; |
class CompilationInfo; |
namespace compiler { |
@@ -51,6 +52,9 @@ class Interpreter { |
void DoBinaryOp(int builtin_context_index, |
compiler::InterpreterAssembler* assembler); |
+ // Generates code to perform a property load via |ic|. |
+ void DoPropertyLoadIC(Callable ic, compiler::InterpreterAssembler* assembler); |
+ |
bool IsInterpreterTableInitialized(Handle<FixedArray> handler_table); |
Isolate* isolate_; |