| Index: src/full-codegen.h
 | 
| diff --git a/src/full-codegen.h b/src/full-codegen.h
 | 
| index 8869d8fb0611e6b2d7453f18c4a3ff4606872a6e..e81b44e4a3fd6a01a4ec0323bc89ce4aaa7ee814 100644
 | 
| --- a/src/full-codegen.h
 | 
| +++ b/src/full-codegen.h
 | 
| @@ -69,10 +69,12 @@ class FullCodeGenerator: public AstVisitor {
 | 
|          scope_(info->scope()),
 | 
|          nesting_stack_(NULL),
 | 
|          loop_depth_(0),
 | 
| +        try_catch_depth_(0),
 | 
|          globals_(NULL),
 | 
|          context_(NULL),
 | 
|          bailout_entries_(info->HasDeoptimizationSupport()
 | 
| -                         ? info->function()->ast_node_count() : 0,
 | 
| +                             ? info->function()->ast_node_count()
 | 
| +                             : 0,
 | 
|                           info->zone()),
 | 
|          back_edges_(2, info->zone()),
 | 
|          ic_total_count_(0) {
 | 
| @@ -964,6 +966,7 @@ class FullCodeGenerator: public AstVisitor {
 | 
|    Label return_label_;
 | 
|    NestedStatement* nesting_stack_;
 | 
|    int loop_depth_;
 | 
| +  int try_catch_depth_;
 | 
|    ZoneList<Handle<Object> >* globals_;
 | 
|    Handle<FixedArray> modules_;
 | 
|    int module_index_;
 | 
| 
 |