Sha256: 130000256783431556d78c15ac1533f966083f8ec9d651399a03914fa64e1276

Contents?: true

Size: 1.71 KB

Versions: 27

Compression:

Stored size: 1.71 KB

Contents

/*
	MIT License http://www.opensource.org/licenses/mit-license.php
	Author Tobias Koppers @sokra
*/
"use strict";

/** @typedef {import("./NormalModule")} NormalModule */
/** @typedef {import("./RuntimeTemplate")} RuntimeTemplate */
/** @typedef {import("webpack-sources").Source} Source */
/** @typedef {import("./Dependency").DependencyTemplate} DependencyTemplate */

/**
 *
 */
class Generator {
	static byType(map) {
		return new ByTypeGenerator(map);
	}

	/**
	 * @abstract
	 * @param {NormalModule} module module for which the code should be generated
	 * @param {Map<Function, DependencyTemplate>} dependencyTemplates mapping from dependencies to templates
	 * @param {RuntimeTemplate} runtimeTemplate the runtime template
	 * @param {string} type which kind of code should be generated
	 * @returns {Source} generated code
	 */
	generate(module, dependencyTemplates, runtimeTemplate, type) {
		throw new Error("Generator.generate: must be overridden");
	}
}

class ByTypeGenerator extends Generator {
	constructor(map) {
		super();
		this.map = map;
	}

	/**
	 * @param {NormalModule} module module for which the code should be generated
	 * @param {Map<Function, DependencyTemplate>} dependencyTemplates mapping from dependencies to templates
	 * @param {RuntimeTemplate} runtimeTemplate the runtime template
	 * @param {string} type which kind of code should be generated
	 * @returns {Source} generated code
	 */
	generate(module, dependencyTemplates, runtimeTemplate, type) {
		const generator = this.map[type];
		if (!generator) {
			throw new Error(`Generator.byType: no generator specified for ${type}`);
		}
		return generator.generate(
			module,
			dependencyTemplates,
			runtimeTemplate,
			type
		);
	}
}

module.exports = Generator;

Version data entries

27 entries across 26 versions & 9 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/webpack/lib/Generator.js
disco_app-0.18.0 test/dummy/node_modules/webpack/lib/Generator.js
disco_app-0.18.2 test/dummy/node_modules/webpack/lib/Generator.js
disco_app-0.16.1 test/dummy/node_modules/webpack/lib/Generator.js
disco_app-0.15.2 test/dummy/node_modules/webpack/lib/Generator.js
disco_app-0.18.4 test/dummy/node_modules/webpack/lib/Generator.js
disco_app-0.18.1 test/dummy/node_modules/webpack/lib/Generator.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/webpack/lib/Generator.js
disco_app-0.14.0 test/dummy/node_modules/webpack/lib/Generator.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/webpack/lib/Generator.js
tang-0.2.1 spec/tang_app/node_modules/webpack/lib/Generator.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/webpack/lib/Generator.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/webpack/lib/Generator.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/webpack/lib/Generator.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/webpack/lib/Generator.js
tang-0.2.0 spec/tang_app/node_modules/webpack/lib/Generator.js
tang-0.1.0 spec/tang_app/node_modules/webpack/lib/Generator.js
tang-0.0.9 spec/tang_app/node_modules/webpack/lib/Generator.js
enju_library-0.3.8 spec/dummy/node_modules/webpack/lib/Generator.js
jester-data-8.0.0 node_modules/webpack/lib/Generator.js