Index: runtime/vm/raw_object.h |
=================================================================== |
--- runtime/vm/raw_object.h (revision 17165) |
+++ runtime/vm/raw_object.h (working copy) |
@@ -860,9 +860,8 @@ |
class RawExceptionHandlers : public RawObject { |
public: |
struct HandlerInfo { |
siva
2013/01/17 00:37:39
We should add a comment here that the index in the
hausner
2013/01/17 01:05:55
Done.
|
- int16_t try_index; // Try block index associated with handler. |
- int16_t outer_try_index; // Try block index of enclosing try block. |
- intptr_t handler_pc; // PC value of handler. |
+ intptr_t outer_try_index; // Try block index of enclosing try block. |
+ intptr_t handler_pc; // PC value of handler. |
}; |
private: |
RAW_HEAP_OBJECT_IMPLEMENTATION(ExceptionHandlers); |