Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Unified Diff: runtime/vm/object.h

Issue 1838303003: Fix bug with exports2() (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: x Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698