Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120479737
RequireHeaderDependency.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Jul 4, 16:22
Size
1 KB
Mime Type
text/x-c++
Expires
Sun, Jul 6, 16:22 (2 d)
Engine
blob
Format
Raw Data
Handle
27194719
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
RequireHeaderDependency.js
View Options
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
const RuntimeGlobals = require("../RuntimeGlobals");
const makeSerializable = require("../util/makeSerializable");
const NullDependency = require("./NullDependency");
/** @typedef {import("webpack-sources").ReplaceSource} ReplaceSource */
/** @typedef {import("../Dependency")} Dependency */
/** @typedef {import("../DependencyTemplate").DependencyTemplateContext} DependencyTemplateContext */
class RequireHeaderDependency extends NullDependency {
constructor(range) {
super();
if (!Array.isArray(range)) throw new Error("range must be valid");
this.range = range;
}
serialize(context) {
const { write } = context;
write(this.range);
super.serialize(context);
}
static deserialize(context) {
const obj = new RequireHeaderDependency(context.read());
obj.deserialize(context);
return obj;
}
}
makeSerializable(
RequireHeaderDependency,
"webpack/lib/dependencies/RequireHeaderDependency"
);
RequireHeaderDependency.Template = class RequireHeaderDependencyTemplate extends (
NullDependency.Template
) {
/**
* @param {Dependency} dependency the dependency for which the template should be applied
* @param {ReplaceSource} source the current replace source which can be modified
* @param {DependencyTemplateContext} templateContext the context object
* @returns {void}
*/
apply(dependency, source, { runtimeRequirements }) {
const dep = /** @type {RequireHeaderDependency} */ (dependency);
runtimeRequirements.add(RuntimeGlobals.require);
source.replace(dep.range[0], dep.range[1] - 1, "__webpack_require__");
}
};
module.exports = RequireHeaderDependency;
Event Timeline
Log In to Comment