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

Unified Diff: runtime/vm/exceptions.cc

Issue 10850034: Rename BadNumberFormatException -> FormatException. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase. 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/vm/exceptions.h ('k') | samples/calculator/tape.dart » ('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 caea8342b310531ff20133ae9c1f00eb3a09f898..6870697ceb8def1f99ca8fa9263a7878b6523496 100644
--- a/runtime/vm/exceptions.cc
+++ b/runtime/vm/exceptions.cc
@@ -404,9 +404,9 @@ RawObject* Exceptions::Create(
library = Library::CoreLibrary();
class_name = Symbols::New("ObjectNotClosureException");
break;
- case kBadNumberFormat:
+ case kFormat:
library = Library::CoreLibrary();
- class_name = Symbols::New("BadNumberFormatException");
+ class_name = Symbols::New("FormatException");
break;
case kStackOverflow:
library = Library::CoreLibrary();
« no previous file with comments | « runtime/vm/exceptions.h ('k') | samples/calculator/tape.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698