findButDoNotCreateLibraryFor method

Library? findButDoNotCreateLibraryFor(
  1. Element e
)

This is used when we might need a Library object that isn't actually a documentation entry point (for elements that have no Library within the set of canonical Libraries).

Implementation

Library? findButDoNotCreateLibraryFor(Element e) {
  // This is just a cache to avoid creating lots of libraries over and over.
  return allLibraries[e.library?.source.fullName];
}