Index: runtime/vm/raw_object.h |
diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h |
index 2538b380dfdae73962a1ee6e11d423bbe5c2ced5..d6fbc57f131704450db7217f5357c2d3eb699a8d 100644 |
--- a/runtime/vm/raw_object.h |
+++ b/runtime/vm/raw_object.h |
@@ -823,8 +823,10 @@ class RawNamespace : public RawObject { |
RawLibrary* library_; // library with name dictionary. |
RawArray* show_names_; // list of names that are exported. |
RawArray* hide_names_; // blacklist of names that are not exported. |
+ RawField* metadata_field_; // remembers the token pos of metadata if any, |
+ // and the metadata values if computed. |
RawObject** to() { |
- return reinterpret_cast<RawObject**>(&ptr()->hide_names_); |
+ return reinterpret_cast<RawObject**>(&ptr()->metadata_field_); |
} |
}; |