| Index: runtime/vm/debugger.cc
|
| diff --git a/runtime/vm/debugger.cc b/runtime/vm/debugger.cc
|
| index 361e34dcee027028f4ab28ac5cb7181a5e62484e..f61bb88fe5108540c3ff3747b953d308e9cbc8c9 100644
|
| --- a/runtime/vm/debugger.cc
|
| +++ b/runtime/vm/debugger.cc
|
| @@ -781,7 +781,7 @@ bool Debugger::ShouldPauseOnException(DebuggerStackTrace* stack_trace,
|
| const String& class_name = String::Handle(exc_class.Name());
|
| // TODO(hausner): Note the poor man's type test. This code will go
|
| // away when we have a way to determine whether an exception is unhandled.
|
| - if (class_name.Equals("TypeError")) {
|
| + if (class_name.Equals("TypeErrorImplementation")) {
|
| return true;
|
| }
|
| if (class_name.Equals("AssertionErrorImplementation")) {
|
|
|