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

Unified Diff: runtime/vm/object_store.h

Issue 19106008: Fix for issue 11680 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 5 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.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 25486)
+++ runtime/vm/object_store.h (working copy)
@@ -213,6 +213,16 @@
typed_data_classes_ = value.raw();
}
+ RawClass* error_class() const {
+ return error_class_;
+ }
+ void set_error_class(const Class& value) {
+ error_class_ = value.raw();
+ }
+ static intptr_t error_class_offset() {
+ return OFFSET_OF(ObjectStore, error_class_);
+ }
+
RawClass* stacktrace_class() const {
return stacktrace_class_;
}
@@ -451,6 +461,7 @@
RawClass* float32x4_class_;
RawClass* uint32x4_class_;
RawArray* typed_data_classes_;
+ RawClass* error_class_;
RawClass* stacktrace_class_;
RawClass* jsregexp_class_;
RawClass* weak_property_class_;
« no previous file with comments | « runtime/vm/exceptions.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698