Index: src/interpreter/interpreter.cc |
diff --git a/src/interpreter/interpreter.cc b/src/interpreter/interpreter.cc |
index 20b0e14624bac2264e91e8c03af7740d2a2d3ba2..6e33d290931ba1f93411885c0c4fdafe3c56dc17 100644 |
--- a/src/interpreter/interpreter.cc |
+++ b/src/interpreter/interpreter.cc |
@@ -1125,7 +1125,7 @@ void Interpreter::DoTestGreaterThanOrEqual(InterpreterAssembler* assembler) { |
// Test if the object referenced by the register operand is a property of the |
// object referenced by the accumulator. |
void Interpreter::DoTestIn(InterpreterAssembler* assembler) { |
- DoBinaryOp(Runtime::kHasProperty, assembler); |
+ DoBinaryOp(CodeFactory::HasProperty(isolate_), assembler); |
} |