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

Unified Diff: src/ast-this-access-visitor.cc

Issue 868883002: Remove the dependency of Zone on Isolate (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix compilation issues Created 5 years, 11 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 | « src/ast-this-access-visitor.h ('k') | src/codegen.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast-this-access-visitor.cc
diff --git a/src/ast-this-access-visitor.cc b/src/ast-this-access-visitor.cc
index cf4a3de842a999a764a57aa1ecf437222a738e50..d3af53db06533550c652b83575668bab1fd9608b 100644
--- a/src/ast-this-access-visitor.cc
+++ b/src/ast-this-access-visitor.cc
@@ -10,8 +10,8 @@ namespace internal {
typedef class AstThisAccessVisitor ATAV; // for code shortitude.
-ATAV::AstThisAccessVisitor(Zone* zone) : uses_this_(false) {
- InitializeAstVisitor(zone);
+ATAV::AstThisAccessVisitor(Isolate* isolate, Zone* zone) : uses_this_(false) {
+ InitializeAstVisitor(isolate, zone);
}
« no previous file with comments | « src/ast-this-access-visitor.h ('k') | src/codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698