You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DllEntryDependency.js 391B

1234567891011121314151617181920
  1. /*
  2. MIT License http://www.opensource.org/licenses/mit-license.php
  3. Author Tobias Koppers @sokra
  4. */
  5. "use strict";
  6. const Dependency = require("../Dependency");
  7. class DllEntryDependency extends Dependency {
  8. constructor(dependencies, name) {
  9. super();
  10. this.dependencies = dependencies;
  11. this.name = name;
  12. }
  13. get type() {
  14. return "dll entry";
  15. }
  16. }
  17. module.exports = DllEntryDependency;