| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index 440e4efef248646c249df72d4b0b2d7df573324a..6a7076a00e390f9364cbf1282f233dc1e0743c28 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -4828,6 +4828,9 @@ class UnwindError : public Error {
|
| bool is_user_initiated() const { return raw_ptr()->is_user_initiated_; }
|
| void set_is_user_initiated(bool value) const;
|
|
|
| + bool is_vm_restart() const { return raw_ptr()->is_vm_restart_; }
|
| + void set_is_vm_restart(bool value) const;
|
| +
|
| RawString* message() const { return raw_ptr()->message_; }
|
|
|
| static intptr_t InstanceSize() {
|
|
|