Index: src/code-stubs.h |
diff --git a/src/code-stubs.h b/src/code-stubs.h |
index b1d45b63e3ed78d08469005931ce894939de1a88..5937d6ebc9bac157dc954b58b9b0227d07a4700f 100644 |
--- a/src/code-stubs.h |
+++ b/src/code-stubs.h |
@@ -1773,8 +1773,10 @@ class CallApiCallbackStub : public PlatformCodeStub { |
call_data_undefined, is_lazy) {} |
// CallApiCallbackStub for callback functions. |
- CallApiCallbackStub(Isolate* isolate, int argc, bool call_data_undefined) |
- : CallApiCallbackStub(isolate, argc, false, call_data_undefined, false) {} |
+ CallApiCallbackStub(Isolate* isolate, int argc, bool call_data_undefined, |
+ bool is_lazy) |
+ : CallApiCallbackStub(isolate, argc, false, call_data_undefined, |
+ is_lazy) {} |
CallInterfaceDescriptor GetCallInterfaceDescriptor() const override { |
return ApiCallbackDescriptorBase::ForArgs(isolate(), argc()); |