Chromium Code Reviews| Index: runtime/vm/object.h |
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h |
| index 1b168bf6ad9c95594c6422951c96165fbaccc428..00aafc4e59f57b10d91d2aee094c9eae55d8f63f 100644 |
| --- a/runtime/vm/object.h |
| +++ b/runtime/vm/object.h |
| @@ -3554,6 +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_; } |
|
hausner
2016/03/29 19:15:23
Siva found this bug:
you should return exports2_
|
| void AddImport(const Namespace& ns) const; |
| intptr_t num_imports() const { return raw_ptr()->num_imports_; } |
| RawNamespace* ImportAt(intptr_t index) const; |