Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(823)

Unified Diff: runtime/vm/raw_object.h

Issue 11970024: Simplify exception handler table (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698