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

Unified Diff: runtime/vm/exceptions.cc

Issue 11233063: Move ObjectNotClosureException and ClosureArgumentMismatchException to patch file. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: checked mode test expectations. Created 8 years, 2 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/vm/dart_entry.cc ('k') | tests/co19/co19-dart2dart.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/exceptions.cc
diff --git a/runtime/vm/exceptions.cc b/runtime/vm/exceptions.cc
index 252d8f9c9b36d6df4205177fae840b4db1d5c864..9ec568672327541c4721e2838a94a987a1b06472 100644
--- a/runtime/vm/exceptions.cc
+++ b/runtime/vm/exceptions.cc
@@ -410,11 +410,11 @@ RawObject* Exceptions::Create(
break;
case kClosureArgumentMismatch:
library = Library::CoreLibrary();
- class_name = Symbols::New("ClosureArgumentMismatchException");
+ class_name = Symbols::New("_ClosureArgumentMismatchException");
break;
case kObjectNotClosure:
library = Library::CoreLibrary();
- class_name = Symbols::New("ObjectNotClosureException");
+ class_name = Symbols::New("_ObjectNotClosureException");
break;
case kFormat:
library = Library::CoreLibrary();
« no previous file with comments | « runtime/vm/dart_entry.cc ('k') | tests/co19/co19-dart2dart.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698