You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1007 B
37 lines
1007 B
/* |
|
MIT License http://www.opensource.org/licenses/mit-license.php |
|
Author Tobias Koppers @sokra |
|
*/ |
|
|
|
"use strict"; |
|
|
|
const makeSerializable = require("../util/makeSerializable"); |
|
const HarmonyImportDependency = require("./HarmonyImportDependency"); |
|
const NullDependency = require("./NullDependency"); |
|
|
|
/** @typedef {import("webpack-sources").ReplaceSource} ReplaceSource */ |
|
/** @typedef {import("../Dependency")} Dependency */ |
|
/** @typedef {import("../DependencyTemplate").DependencyTemplateContext} DependencyTemplateContext */ |
|
|
|
class HarmonyAcceptImportDependency extends HarmonyImportDependency { |
|
constructor(request) { |
|
super(request, NaN); |
|
this.weak = true; |
|
} |
|
|
|
get type() { |
|
return "harmony accept"; |
|
} |
|
} |
|
|
|
makeSerializable( |
|
HarmonyAcceptImportDependency, |
|
"webpack/lib/dependencies/HarmonyAcceptImportDependency" |
|
); |
|
|
|
HarmonyAcceptImportDependency.Template = |
|
/** @type {typeof HarmonyImportDependency.Template} */ ( |
|
NullDependency.Template |
|
); |
|
|
|
module.exports = HarmonyAcceptImportDependency;
|
|
|