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

Unified Diff: runtime/vm/object_store.h

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.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object_store.h
===================================================================
--- runtime/vm/object_store.h (revision 3167)
+++ runtime/vm/object_store.h (working copy)
@@ -50,7 +50,6 @@
kArrayClass,
kImmutableArrayClass,
kByteBufferClass,
- kUnhandledExceptionClass,
kStacktraceClass,
kJSRegExpClass,
kMaxId,
@@ -192,16 +191,6 @@
byte_buffer_class_ = value.raw();
}
- RawClass* unhandled_exception_class() const {
- return unhandled_exception_class_;
- }
- void set_unhandled_exception_class(const Class& value) {
- unhandled_exception_class_ = value.raw();
- }
- static intptr_t unhandled_exception_class_offset() {
- return OFFSET_OF(ObjectStore, unhandled_exception_class_);
- }
-
RawClass* stacktrace_class() const {
return stacktrace_class_;
}
@@ -341,7 +330,6 @@
RawClass* array_class_;
RawClass* immutable_array_class_;
RawClass* byte_buffer_class_;
- RawClass* unhandled_exception_class_;
RawClass* stacktrace_class_;
RawClass* jsregexp_class_;
RawBool* true_value_;
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698