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

Unified Diff: runtime/vm/debugger.cc

Issue 10882056: Unify AssertionError. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Move AssertionError to errors.dart. 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
« no previous file with comments | « runtime/lib/error.dart ('k') | runtime/vm/symbols.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/debugger.cc
diff --git a/runtime/vm/debugger.cc b/runtime/vm/debugger.cc
index e3abe009d9e78f694f34471a358a563789721ed8..361e34dcee027028f4ab28ac5cb7181a5e62484e 100644
--- a/runtime/vm/debugger.cc
+++ b/runtime/vm/debugger.cc
@@ -784,7 +784,7 @@ bool Debugger::ShouldPauseOnException(DebuggerStackTrace* stack_trace,
if (class_name.Equals("TypeError")) {
return true;
}
- if (class_name.Equals("AssertionError")) {
+ if (class_name.Equals("AssertionErrorImplementation")) {
return true;
}
return false;
« no previous file with comments | « runtime/lib/error.dart ('k') | runtime/vm/symbols.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698