Index: src/interpreter/interpreter.h |
diff --git a/src/interpreter/interpreter.h b/src/interpreter/interpreter.h |
index 57930bbde0b8137e5434aef8e90c2143ed9c8c7b..eacc8e179199d08635ca3444a1f9bf810d8486a4 100644 |
--- a/src/interpreter/interpreter.h |
+++ b/src/interpreter/interpreter.h |
@@ -21,6 +21,10 @@ class Isolate; |
class Callable; |
class CompilationInfo; |
+namespace compiler { |
+class Node; |
+} // namespace compiler |
+ |
namespace interpreter { |
class InterpreterAssembler; |
@@ -119,6 +123,9 @@ class Interpreter { |
// Generates code to perform a type conversion. |
void DoTypeConversionOp(Callable callable, InterpreterAssembler* assembler); |
+ // Generates code to perform logical-not on boolean |value|. |
+ void DoLogicalNotOp(compiler::Node* value, InterpreterAssembler* assembler); |
+ |
// Generates code to perform delete via function_id. |
void DoDelete(Runtime::FunctionId function_id, |
InterpreterAssembler* assembler); |