Index: runtime/vm/code_descriptors.h |
diff --git a/runtime/vm/code_descriptors.h b/runtime/vm/code_descriptors.h |
index 58f1af7b7b1aca453b1708a719ae155e76f34e91..fa99412751584d18a508e63574c1be96f1e7e60e 100644 |
--- a/runtime/vm/code_descriptors.h |
+++ b/runtime/vm/code_descriptors.h |
@@ -63,13 +63,13 @@ class CodeSourceMapBuilder : public ZoneAllocated { |
}; |
-class StackmapTableBuilder : public ZoneAllocated { |
+class StackMapTableBuilder : public ZoneAllocated { |
public: |
- StackmapTableBuilder() |
- : stack_map_(Stackmap::ZoneHandle()), |
+ StackMapTableBuilder() |
+ : stack_map_(StackMap::ZoneHandle()), |
list_(GrowableObjectArray::ZoneHandle( |
GrowableObjectArray::New(Heap::kOld))) {} |
- ~StackmapTableBuilder() {} |
+ ~StackMapTableBuilder() {} |
void AddEntry(intptr_t pc_offset, |
BitmapBuilder* bitmap, |
@@ -77,15 +77,15 @@ class StackmapTableBuilder : public ZoneAllocated { |
bool Verify(); |
- RawArray* FinalizeStackmaps(const Code& code); |
+ RawArray* FinalizeStackMaps(const Code& code); |
private: |
intptr_t Length() const { return list_.Length(); } |
- RawStackmap* MapAt(intptr_t index) const; |
+ RawStackMap* MapAt(intptr_t index) const; |
- Stackmap& stack_map_; |
+ StackMap& stack_map_; |
GrowableObjectArray& list_; |
- DISALLOW_COPY_AND_ASSIGN(StackmapTableBuilder); |
+ DISALLOW_COPY_AND_ASSIGN(StackMapTableBuilder); |
}; |
@@ -130,7 +130,7 @@ class ExceptionHandlerList : public ZoneAllocated { |
// Called by rethrows, to mark their enclosing handlers. |
- void SetNeedsStacktrace(intptr_t try_index) { |
+ void SetNeedsStackTrace(intptr_t try_index) { |
// Rethrows can be generated outside a try by the compiler. |
if (try_index == CatchClauseNode::kInvalidTryIndex) { |
return; |