| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index 2cfe03a353338712fb7f0a3521bd107fec88089d..b4f7ebb1c11742f1d930671fc8d6fb499e733c83 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -3939,18 +3939,19 @@ class Library : public Object {
|
| void InitClassDictionary() const;
|
|
|
| RawArray* resolved_names() const { return raw_ptr()->resolved_names_; }
|
| - void InitResolvedNamesCache(intptr_t size) const;
|
| - void AllocateExportedNamesCache() const;
|
| - void InitExportedNamesCache() const;
|
| - static void InvalidateExportedNamesCaches();
|
| bool LookupResolvedNamesCache(const String& name, Object* obj) const;
|
| void AddToResolvedNamesCache(const String& name, const Object& obj) const;
|
| + void InitResolvedNamesCache() const;
|
| + void ClearResolvedNamesCache() const;
|
| void InvalidateResolvedName(const String& name) const;
|
| void InvalidateResolvedNamesCache() const;
|
|
|
| RawArray* exported_names() const { return raw_ptr()->exported_names_; }
|
| bool LookupExportedNamesCache(const String& name, Object* obj) const;
|
| void AddToExportedNamesCache(const String& name, const Object& obj) const;
|
| + void InitExportedNamesCache() const;
|
| + void ClearExportedNamesCache() const;
|
| + static void InvalidateExportedNamesCaches();
|
|
|
|
|
| void InitImportList() const;
|
|
|