| Index: runtime/vm/debugger.cc
|
| diff --git a/runtime/vm/debugger.cc b/runtime/vm/debugger.cc
|
| index 509abb68252285a59f7b4aca4ec791686b041791..87f1546f98ca817a0752617b46a4b3ad6dd9c956 100644
|
| --- a/runtime/vm/debugger.cc
|
| +++ b/runtime/vm/debugger.cc
|
| @@ -806,7 +806,6 @@ bool ActivationFrame::HandlesException(const Instance& exc_obj) {
|
| ExceptionHandlers& handlers = ExceptionHandlers::Handle();
|
| Array& handled_types = Array::Handle();
|
| AbstractType& type = Type::Handle();
|
| - const TypeArguments& no_instantiator = TypeArguments::Handle();
|
| const bool is_async =
|
| function().IsAsyncClosure() || function().IsAsyncGenClosure();
|
| handlers = code().exception_handlers();
|
| @@ -831,7 +830,7 @@ bool ActivationFrame::HandlesException(const Instance& exc_obj) {
|
| if (type.IsDynamicType()) {
|
| return true;
|
| }
|
| - if (exc_obj.IsInstanceOf(type, no_instantiator, NULL)) {
|
| + if (exc_obj.IsInstanceOf(type, Object::null_type_arguments(), NULL)) {
|
| return true;
|
| }
|
| }
|
|
|