Index: src/code-factory.cc |
diff --git a/src/code-factory.cc b/src/code-factory.cc |
index 177cacb63c621e389917941d09fc9c71407fae2f..0a10b7a55c74859bb24fd02cac8edf755217edcf 100644 |
--- a/src/code-factory.cc |
+++ b/src/code-factory.cc |
@@ -555,6 +555,11 @@ Callable CodeFactory::ConstructFunction(Isolate* isolate) { |
ConstructTrampolineDescriptor(isolate)); |
} |
+// static |
+Callable CodeFactory::HasProperty(Isolate* isolate) { |
+ HasPropertyStub stub(isolate); |
+ return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); |
+} |
// static |
Callable CodeFactory::InterpreterPushArgsAndCall(Isolate* isolate, |