| Index: runtime/vm/object.cc
|
| ===================================================================
|
| --- runtime/vm/object.cc (revision 17157)
|
| +++ runtime/vm/object.cc (working copy)
|
| @@ -6923,6 +6923,12 @@
|
| }
|
|
|
|
|
| +intptr_t ExceptionHandlers::OuterTryIndex(intptr_t index) const {
|
| + ASSERT((index >= 0) && (index < Length()));
|
| + return raw_ptr()->data_[index].outer_try_index;
|
| +}
|
| +
|
| +
|
| void ExceptionHandlers::SetHandledTypes(intptr_t index,
|
| const Array& handled_types) const {
|
| ASSERT((index >= 0) && (index < Length()));
|
|
|