| Index: runtime/vm/object_store.h
|
| ===================================================================
|
| --- runtime/vm/object_store.h (revision 16063)
|
| +++ runtime/vm/object_store.h (working copy)
|
| @@ -435,6 +435,20 @@
|
| }
|
| void clear_sticky_error() { sticky_error_ = Error::null(); }
|
|
|
| + RawString* unhandled_exception_handler() const {
|
| + return unhandled_exception_handler_;
|
| + }
|
| + void set_unhandled_exception_handler(const String& value) {
|
| + unhandled_exception_handler_ = value.raw();
|
| + }
|
| +
|
| + RawString* isolate_library_uri() const {
|
| + return isolate_library_uri_;
|
| + }
|
| + void set_isolate_library_uri(const String& value) {
|
| + isolate_library_uri_ = value.raw();
|
| + }
|
| +
|
| RawBool* true_value() const { return true_value_; }
|
| void set_true_value(const Bool& value) { true_value_ = value.raw(); }
|
|
|
| @@ -548,6 +562,8 @@
|
| RawGrowableObjectArray* libraries_;
|
| RawGrowableObjectArray* pending_classes_;
|
| RawError* sticky_error_;
|
| + RawString* unhandled_exception_handler_;
|
| + RawString* isolate_library_uri_;
|
| RawContext* empty_context_;
|
| RawInstance* stack_overflow_;
|
| RawInstance* out_of_memory_;
|
|
|