webpack/lib/dependencies/DllEntryDependency.js

21 lines
391 B
JavaScript
Raw Normal View History

2015-05-17 00:27:59 +08:00
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
const Dependency = require("../Dependency");
2015-05-17 00:27:59 +08:00
class DllEntryDependency extends Dependency {
constructor(dependencies, name) {
super();
this.dependencies = dependencies;
this.name = name;
}
get type() {
return "dll entry";
}
2015-05-17 00:27:59 +08:00
}
module.exports = DllEntryDependency;