Index: src/full-codegen.h |
=================================================================== |
--- src/full-codegen.h (revision 12237) |
+++ src/full-codegen.h (working copy) |
@@ -93,8 +93,12 @@ |
? info->function()->ast_node_count() : 0, |
info->zone()), |
ic_total_count_(0), |
- zone_(info->zone()) { } |
+ zone_(info->zone()) { |
+ Initialize(); |
+ } |
+ void Initialize(); |
+ |
static bool MakeCode(CompilationInfo* info); |
// Encode state and pc-offset as a BitField<type, start, size>. |
@@ -806,6 +810,7 @@ |
int ic_total_count_; |
Handle<FixedArray> handler_table_; |
Handle<JSGlobalPropertyCell> profiling_counter_; |
+ bool generate_debug_code_; |
Zone* zone_; |
friend class NestedStatement; |