Index: src/interpreter/interpreter.h |
diff --git a/src/interpreter/interpreter.h b/src/interpreter/interpreter.h |
index 57930bbde0b8137e5434aef8e90c2143ed9c8c7b..5c2b34048d5e5d6403ca1fa01a11349f359b7fb2 100644 |
--- a/src/interpreter/interpreter.h |
+++ b/src/interpreter/interpreter.h |
@@ -73,6 +73,10 @@ class Interpreter { |
void DoBinaryOp(Runtime::FunctionId function_id, |
InterpreterAssembler* assembler); |
+ // Generates code to perform the binary operations via |Generator|. |
+ template <class Generator> |
+ void DoBinaryOp(InterpreterAssembler* assembler); |
+ |
// Generates code to perform the count operations via |callable|. |
void DoCountOp(Callable callable, InterpreterAssembler* assembler); |