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

Unified Diff: runtime/vm/debugger.cc

Issue 10896007: Expose remaining 'errors' in an unified dart:core. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Make all implementations implement, not extend, the exposed type. Created 8 years, 4 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/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")) {

Powered by Google App Engine
This is Rietveld 408576698