| Index: runtime/vm/raw_object.h
|
| diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h
|
| index 561011c9d35d09b1b48c35add36aad69e791cacc..03e0120ea47f133c963254c7ba3429cdab75364b 100644
|
| --- a/runtime/vm/raw_object.h
|
| +++ b/runtime/vm/raw_object.h
|
| @@ -1023,6 +1023,9 @@ class RawLibrary : public RawObject {
|
| RawGrowableObjectArray* patch_classes_;
|
| RawArray* imports_; // List of Namespaces imported without prefix.
|
| RawArray* exports_; // List of re-exported Namespaces.
|
| + RawArray* exports2_; // Copy of exports_, used by background
|
| + // compiler to detect cycles without colliding
|
| + // with mutator thread lookups.
|
| RawInstance* load_error_; // Error iff load_state_ == kLoadError.
|
| RawObject** to_snapshot() {
|
| return reinterpret_cast<RawObject**>(&ptr()->load_error_);
|
|
|