Index: runtime/vm/code_descriptors.h |
=================================================================== |
--- runtime/vm/code_descriptors.h (revision 38196) |
+++ runtime/vm/code_descriptors.h (working copy) |
@@ -30,8 +30,8 @@ |
} |
}; |
- explicit DescriptorList(intptr_t initial_capacity) : list_(initial_capacity) { |
- } |
+ explicit DescriptorList(intptr_t initial_capacity) |
+ : list_(initial_capacity), has_try_index_(false) {} |
~DescriptorList() { } |
intptr_t Length() const { |
@@ -67,6 +67,7 @@ |
private: |
GrowableArray<struct PcDesc> list_; |
+ bool has_try_index_; |
DISALLOW_COPY_AND_ASSIGN(DescriptorList); |
}; |