Index: src/interpreter/interpreter.cc |
diff --git a/src/interpreter/interpreter.cc b/src/interpreter/interpreter.cc |
index 835f80a1b78ab697f011a104dc8f9c715d84d133..9ac75bc517c7cf5ea95332dc9b5064a0f1ef02f4 100644 |
--- a/src/interpreter/interpreter.cc |
+++ b/src/interpreter/interpreter.cc |
@@ -1137,7 +1137,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); |
} |