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

Unified Diff: runtime/vm/object_store.cc

Issue 9166016: Introduce the Error object class in the vm. It represents all of the (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 11 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/object_store.h ('k') | runtime/vm/raw_object.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object_store.cc
===================================================================
--- runtime/vm/object_store.cc (revision 3167)
+++ runtime/vm/object_store.cc (working copy)
@@ -36,7 +36,6 @@
array_class_(Class::null()),
immutable_array_class_(Class::null()),
byte_buffer_class_(Class::null()),
- unhandled_exception_class_(Class::null()),
stacktrace_class_(Class::null()),
jsregexp_class_(Class::null()),
true_value_(Bool::null()),
@@ -118,7 +117,6 @@
case kArrayClass: return array_class_;
case kImmutableArrayClass: return immutable_array_class_;
case kByteBufferClass: return byte_buffer_class_;
- case kUnhandledExceptionClass: return unhandled_exception_class_;
case kStacktraceClass: return stacktrace_class_;
case kJSRegExpClass: return jsregexp_class_;
default: break;
@@ -160,8 +158,6 @@
return kImmutableArrayClass;
} else if (raw_class == byte_buffer_class_) {
return kByteBufferClass;
- } else if (raw_class == unhandled_exception_class_) {
- return kUnhandledExceptionClass;
} else if (raw_class == stacktrace_class_) {
return kStacktraceClass;
} else if (raw_class == jsregexp_class_) {
« no previous file with comments | « runtime/vm/object_store.h ('k') | runtime/vm/raw_object.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698