Code coverage report for lib\DependenciesBlockVariable.js

Statements: 86.96% (20 / 23)      Branches: 75% (3 / 4)      Functions: 71.43% (5 / 7)      Lines: 90.91% (20 / 22)      Ignored: none     

All files » lib\ » DependenciesBlockVariable.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38        1 1   1 91 91 91   1   1 198 198 198 196       1 91 91 90 90 90   91     1          
/*
	MIT License http://www.opensource.org/licenses/mit-license.php
	Author Tobias Koppers @sokra
*/
var ReplaceSource = require("webpack-core/lib/ReplaceSource");
var RawSource = require("webpack-core/lib/RawSource");
 
function DependenciesBlockVariable(name, expression, dependencies) {
	this.name = name;
	this.expression = expression;
	this.dependencies = dependencies || [];
}
module.exports = DependenciesBlockVariable;
 
DependenciesBlockVariable.prototype.updateHash = function(hash) {
	hash.update(this.name);
	hash.update(this.expression);
	this.dependencies.forEach(function(d) {
		d.updateHash(hash);
	});
};
 
DependenciesBlockVariable.prototype.expressionSource = function(dependencyTemplates, outputOptions, requestShortener) {
	var source = new ReplaceSource(new RawSource(this.expression));
	this.dependencies.forEach(function(dep) {
		var template = dependencyTemplates.get(dep.Class);
		Iif(!template) throw new Error("No template for dependency: " + dep.Class.name);
		template.apply(dep, source, outputOptions, requestShortener, dependencyTemplates);
	});
	return source;
};
 
DependenciesBlockVariable.prototype.disconnect = function() {
	this.dependencies.forEach(function(d) {
		d.disconnect();
	});
};