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

Unified Diff: vm/exceptions.cc

Issue 9030013: Fix issue 1023: (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 12 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 | « vm/exceptions.h ('k') | vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/exceptions.cc
===================================================================
--- vm/exceptions.cc (revision 2927)
+++ vm/exceptions.cc (working copy)
@@ -144,6 +144,9 @@
case kStackOverflow:
class_name = String::NewSymbol("StackOverflowException");
break;
+ case kOutOfMemory:
+ class_name = String::NewSymbol("OutOfMemoryException");
+ break;
case kWrongArgumentCount:
class_name = String::NewSymbol("WrongArgumentCountException");
break;
« no previous file with comments | « vm/exceptions.h ('k') | vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698