main
Last change
on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 4 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
990 bytes
|
Line | |
---|
1 | /*
|
---|
2 | MIT License http://www.opensource.org/licenses/mit-license.php
|
---|
3 | Author Ivan Kopeykin @vankop
|
---|
4 | */
|
---|
5 |
|
---|
6 | "use strict";
|
---|
7 |
|
---|
8 | const makeSerializable = require("../util/makeSerializable");
|
---|
9 | const ModuleDependency = require("./ModuleDependency");
|
---|
10 | const ModuleDependencyTemplateAsId = require("./ModuleDependencyTemplateAsId");
|
---|
11 |
|
---|
12 | /** @typedef {import("../javascript/JavascriptParser").Range} Range */
|
---|
13 |
|
---|
14 | class ImportMetaHotDeclineDependency extends ModuleDependency {
|
---|
15 | /**
|
---|
16 | * @param {string} request the request string
|
---|
17 | * @param {Range} range location in source code
|
---|
18 | */
|
---|
19 | constructor(request, range) {
|
---|
20 | super(request);
|
---|
21 |
|
---|
22 | this.range = range;
|
---|
23 | this.weak = true;
|
---|
24 | }
|
---|
25 |
|
---|
26 | get type() {
|
---|
27 | return "import.meta.webpackHot.decline";
|
---|
28 | }
|
---|
29 |
|
---|
30 | get category() {
|
---|
31 | return "esm";
|
---|
32 | }
|
---|
33 | }
|
---|
34 |
|
---|
35 | makeSerializable(
|
---|
36 | ImportMetaHotDeclineDependency,
|
---|
37 | "webpack/lib/dependencies/ImportMetaHotDeclineDependency"
|
---|
38 | );
|
---|
39 |
|
---|
40 | ImportMetaHotDeclineDependency.Template = ModuleDependencyTemplateAsId;
|
---|
41 |
|
---|
42 | module.exports = ImportMetaHotDeclineDependency;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.