WXL
3 天以前 9bce51f651aad297ef9eb6df832bfdaf1de05d84
node_modules/webpack/lib/container/ContainerEntryDependency.js
@@ -12,18 +12,23 @@
class ContainerEntryDependency extends Dependency {
   /**
    * Creates an instance of ContainerEntryDependency.
    * @param {string} name entry name
    * @param {ExposesList} exposes list of exposed modules
    * @param {string} shareScope name of the share scope
    */
   constructor(name, exposes, shareScope) {
      super();
      /** @type {string} */
      this.name = name;
      /** @type {ExposesList} */
      this.exposes = exposes;
      /** @type {string} */
      this.shareScope = shareScope;
   }
   /**
    * Returns an identifier to merge equal requests.
    * @returns {string | null} an identifier to merge equal requests
    */
   getResourceIdentifier() {