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

Unified Diff: src/full-codegen.h

Issue 868883002: Remove the dependency of Zone on Isolate (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: All platforms 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
Index: src/full-codegen.h
diff --git a/src/full-codegen.h b/src/full-codegen.h
index c431e10213daf983e44df21549a46a4f2ea183bf..86a41606eb707bf35236bce5f7783f76cd178424 100644
--- a/src/full-codegen.h
+++ b/src/full-codegen.h
@@ -29,8 +29,9 @@ class JumpPatchSite;
// debugger to piggybag on.
class BreakableStatementChecker: public AstVisitor {
public:
- explicit BreakableStatementChecker(Zone* zone) : is_breakable_(false) {
- InitializeAstVisitor(zone);
+ explicit BreakableStatementChecker(Isolate* isolate, Zone* zone)
Michael Starzinger 2015/01/23 14:21:11 nit: No longer needs to be marked "explicit" now.
danno 2015/01/23 14:45:20 Done.
+ : is_breakable_(false) {
+ InitializeAstVisitor(isolate, zone);
}
void Check(Statement* stmt);

Powered by Google App Engine
This is Rietveld 408576698