Sha256: 0ad84c6eee739470088fa2defc62c1f78e2327609f1a48e82ce954390f4ba24c

Contents?: true

Size: 800 Bytes

Versions: 26

Compression:

Stored size: 800 Bytes

Contents

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

const Hook = require("./Hook");
const HookCodeFactory = require("./HookCodeFactory");

class SyncLoopHookCodeFactory extends HookCodeFactory {
	content({ onError, onDone, rethrowIfPossible }) {
		return this.callTapsLooping({
			onError: (i, err) => onError(err),
			onDone,
			rethrowIfPossible
		});
	}
}

const factory = new SyncLoopHookCodeFactory();

class SyncLoopHook extends Hook {
	tapAsync() {
		throw new Error("tapAsync is not supported on a SyncLoopHook");
	}

	tapPromise() {
		throw new Error("tapPromise is not supported on a SyncLoopHook");
	}

	compile(options) {
		factory.setup(this, options);
		return factory.create(options);
	}
}

module.exports = SyncLoopHook;

Version data entries

26 entries across 25 versions & 8 rubygems

Version Path
ezii-os-5.2.1 node_modules/tapable/lib/SyncLoopHook.js
ezii-os-2.0.1 node_modules/tapable/lib/SyncLoopHook.js
ezii-os-1.1.0 node_modules/tapable/lib/SyncLoopHook.js
ezii-os-1.0.0 node_modules/tapable/lib/SyncLoopHook.js
ezii-os-0.0.0.1.0 node_modules/tapable/lib/SyncLoopHook.js
ezii-os-0.0.0.0.1 node_modules/tapable/lib/SyncLoopHook.js