| Index: runtime/vm/raw_object.h
|
| diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h
|
| index 21f97e2bb501352d781671f8ea9126934b290109..29ffb67aa167e2a9f8f97f1a75128ef78b03da28 100644
|
| --- a/runtime/vm/raw_object.h
|
| +++ b/runtime/vm/raw_object.h
|
| @@ -803,8 +803,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_);
|
| }
|
| };
|
|
|
|
|