We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0105bc1 commit 01ce741Copy full SHA for 01ce741
1 file changed
lib/dependencies/CreateScriptUrlDependency.js
@@ -25,6 +25,18 @@ class CreateScriptUrlDependency extends NullDependency {
25
get type() {
26
return "create script url";
27
}
28
+
29
+ serialize(context) {
30
+ const { write } = context;
31
+ write(this.range);
32
+ super.serialize(context);
33
+ }
34
35
+ deserialize(context) {
36
+ const { read } = context;
37
+ this.range = read();
38
+ super.deserialize(context);
39
40
41
42
CreateScriptUrlDependency.Template = class CreateScriptUrlDependencyTemplate extends (
0 commit comments