| Index: runtime/vm/parser.cc
|
| diff --git a/runtime/vm/parser.cc b/runtime/vm/parser.cc
|
| index 0e5e5db6c6296ef63c2335353b6cd594daae1f26..a760f422b5dc0463bc6a8134268b66734609a49e 100644
|
| --- a/runtime/vm/parser.cc
|
| +++ b/runtime/vm/parser.cc
|
| @@ -1285,7 +1285,8 @@ RawFunction* Parser::GetSuperFunction(intptr_t token_pos,
|
| // Lookup class in the corelib implementation which contains various VM
|
| // helper methods and classes.
|
| static RawClass* LookupImplClass(const String& class_name) {
|
| - return Library::Handle(Library::CoreImplLibrary()).LookupClass(class_name);
|
| + Library& coreimpl = Library::Handle(Library::CoreImplLibrary());
|
| + return coreimpl.LookupClassAllowPrivate(class_name);
|
| }
|
|
|
|
|
|
|