Sha256: 66c3ceae8fc49a7525908a3c781c9a33149763be6c635b11563e1689a0711d99

Contents?: true

Size: 1.19 KB

Versions: 62

Compression:

Stored size: 1.19 KB

Contents

/*
	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);
		if(!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();
	});
};

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
smock-0.1.268 node_modules/webpack/lib/DependenciesBlockVariable.js
smock-0.1.267 node_modules/webpack/lib/DependenciesBlockVariable.js
smock-0.1.266 node_modules/webpack/lib/DependenciesBlockVariable.js
smock-0.1.265 node_modules/webpack/lib/DependenciesBlockVariable.js
smock-0.1.264 node_modules/webpack/lib/DependenciesBlockVariable.js
smock-0.1.263 node_modules/webpack/lib/DependenciesBlockVariable.js
smock-0.1.262 node_modules/webpack/lib/DependenciesBlockVariable.js
smock-0.1.261 node_modules/webpack/lib/DependenciesBlockVariable.js
smock-0.1.260 node_modules/webpack/lib/DependenciesBlockVariable.js
smock-0.1.259 node_modules/webpack/lib/DependenciesBlockVariable.js
smock-0.1.258 node_modules/webpack/lib/DependenciesBlockVariable.js
smock-0.1.256 node_modules/webpack/lib/DependenciesBlockVariable.js
smock-0.1.255 node_modules/webpack/lib/DependenciesBlockVariable.js
smock-0.1.254 node_modules/webpack/lib/DependenciesBlockVariable.js
smock-0.1.253 node_modules/webpack/lib/DependenciesBlockVariable.js
smock-0.1.252 node_modules/webpack/lib/DependenciesBlockVariable.js
smock-0.1.251 node_modules/webpack/lib/DependenciesBlockVariable.js
smock-0.1.250 node_modules/webpack/lib/DependenciesBlockVariable.js
smock-0.1.249 node_modules/webpack/lib/DependenciesBlockVariable.js
smock-0.1.247 node_modules/webpack/lib/DependenciesBlockVariable.js