Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Unified Diff: src/code-stubs.h

Issue 2143983002: Fix context for fast accessors (lazy). (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/crankshaft/hydrogen.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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());
« no previous file with comments | « no previous file | src/crankshaft/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698