| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index 921c9fac2f5358365c5b1057cff34fac9a9e2f8e..15d488e1f90d6884fff0b5423cf38d78c38784bb 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -3554,7 +3554,7 @@ class Library : public Object {
|
| // Library imports.
|
| RawArray* imports() const { return raw_ptr()->imports_; }
|
| RawArray* exports() const { return raw_ptr()->exports_; }
|
| - RawArray* exports2() const { return raw_ptr()->exports_; }
|
| + RawArray* exports2() const { return raw_ptr()->exports2_; }
|
| void AddImport(const Namespace& ns) const;
|
| intptr_t num_imports() const { return raw_ptr()->num_imports_; }
|
| RawNamespace* ImportAt(intptr_t index) const;
|
|
|