Sha256: c94806595fc7c4ffd79494aa2815f5cb9ce159b6d6c50bc91f86ab0c7d7b3b51

Contents?: true

Size: 754 Bytes

Versions: 62

Compression:

Stored size: 754 Bytes

Contents

/*
	MIT License http://www.opensource.org/licenses/mit-license.php
	Author Tobias Koppers @sokra
*/
var DependenciesBlock = require("./DependenciesBlock");

function AsyncDependenciesBlock(name, module, loc) {
	DependenciesBlock.call(this);
	this.chunkName = name;
	this.chunk = null;
	this.module = module;
	this.loc = loc;
}
module.exports = AsyncDependenciesBlock;

AsyncDependenciesBlock.prototype = Object.create(DependenciesBlock.prototype);

AsyncDependenciesBlock.prototype.updateHash = function updateHash(hash) {
	hash.update(this.chunkName || "");
	DependenciesBlock.prototype.updateHash.call(this, hash);
};

AsyncDependenciesBlock.prototype.disconnect = function() {
	this.chunk = null;
	DependenciesBlock.prototype.disconnect.call(this);
};

Version data entries

62 entries across 62 versions & 1 rubygems

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