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); |