mirror of https://github.com/webpack/webpack.git
16 lines
541 B
JavaScript
16 lines
541 B
JavaScript
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Tobias Koppers @sokra
|
|
*/
|
|
var ModuleDependency = require("./ModuleDependency");
|
|
|
|
function ContextElementDependency(request) {
|
|
ModuleDependency.call(this, request);
|
|
this.Class = ContextElementDependency;
|
|
}
|
|
module.exports = ContextElementDependency;
|
|
|
|
ContextElementDependency.prototype = Object.create(ModuleDependency.prototype);
|
|
ContextElementDependency.prototype.constructor = ContextElementDependency;
|
|
ContextElementDependency.prototype.type = "context element";
|