@vue/compiler-core 3.4.18 → 3.4.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-core v3.4.
|
|
2
|
+
* @vue/compiler-core v3.4.20
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -697,11 +697,10 @@ class Tokenizer {
|
|
|
697
697
|
} else if (this.inSFCRoot) {
|
|
698
698
|
this.state = 34;
|
|
699
699
|
} else if (!this.inXML) {
|
|
700
|
-
|
|
701
|
-
if (lower === 116) {
|
|
700
|
+
if (c === 116) {
|
|
702
701
|
this.state = 30;
|
|
703
702
|
} else {
|
|
704
|
-
this.state =
|
|
703
|
+
this.state = c === 115 ? 29 : 6;
|
|
705
704
|
}
|
|
706
705
|
} else {
|
|
707
706
|
this.state = 6;
|
|
@@ -977,10 +976,9 @@ class Tokenizer {
|
|
|
977
976
|
}
|
|
978
977
|
}
|
|
979
978
|
stateBeforeSpecialS(c) {
|
|
980
|
-
|
|
981
|
-
if (lower === Sequences.ScriptEnd[3]) {
|
|
979
|
+
if (c === Sequences.ScriptEnd[3]) {
|
|
982
980
|
this.startSpecial(Sequences.ScriptEnd, 4);
|
|
983
|
-
} else if (
|
|
981
|
+
} else if (c === Sequences.StyleEnd[3]) {
|
|
984
982
|
this.startSpecial(Sequences.StyleEnd, 4);
|
|
985
983
|
} else {
|
|
986
984
|
this.state = 6;
|
|
@@ -988,10 +986,9 @@ class Tokenizer {
|
|
|
988
986
|
}
|
|
989
987
|
}
|
|
990
988
|
stateBeforeSpecialT(c) {
|
|
991
|
-
|
|
992
|
-
if (lower === Sequences.TitleEnd[3]) {
|
|
989
|
+
if (c === Sequences.TitleEnd[3]) {
|
|
993
990
|
this.startSpecial(Sequences.TitleEnd, 4);
|
|
994
|
-
} else if (
|
|
991
|
+
} else if (c === Sequences.TextareaEnd[3]) {
|
|
995
992
|
this.startSpecial(Sequences.TextareaEnd, 4);
|
|
996
993
|
} else {
|
|
997
994
|
this.state = 6;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-core v3.4.
|
|
2
|
+
* @vue/compiler-core v3.4.20
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -697,11 +697,10 @@ class Tokenizer {
|
|
|
697
697
|
} else if (this.inSFCRoot) {
|
|
698
698
|
this.state = 34;
|
|
699
699
|
} else if (!this.inXML) {
|
|
700
|
-
|
|
701
|
-
if (lower === 116) {
|
|
700
|
+
if (c === 116) {
|
|
702
701
|
this.state = 30;
|
|
703
702
|
} else {
|
|
704
|
-
this.state =
|
|
703
|
+
this.state = c === 115 ? 29 : 6;
|
|
705
704
|
}
|
|
706
705
|
} else {
|
|
707
706
|
this.state = 6;
|
|
@@ -977,10 +976,9 @@ class Tokenizer {
|
|
|
977
976
|
}
|
|
978
977
|
}
|
|
979
978
|
stateBeforeSpecialS(c) {
|
|
980
|
-
|
|
981
|
-
if (lower === Sequences.ScriptEnd[3]) {
|
|
979
|
+
if (c === Sequences.ScriptEnd[3]) {
|
|
982
980
|
this.startSpecial(Sequences.ScriptEnd, 4);
|
|
983
|
-
} else if (
|
|
981
|
+
} else if (c === Sequences.StyleEnd[3]) {
|
|
984
982
|
this.startSpecial(Sequences.StyleEnd, 4);
|
|
985
983
|
} else {
|
|
986
984
|
this.state = 6;
|
|
@@ -988,10 +986,9 @@ class Tokenizer {
|
|
|
988
986
|
}
|
|
989
987
|
}
|
|
990
988
|
stateBeforeSpecialT(c) {
|
|
991
|
-
|
|
992
|
-
if (lower === Sequences.TitleEnd[3]) {
|
|
989
|
+
if (c === Sequences.TitleEnd[3]) {
|
|
993
990
|
this.startSpecial(Sequences.TitleEnd, 4);
|
|
994
|
-
} else if (
|
|
991
|
+
} else if (c === Sequences.TextareaEnd[3]) {
|
|
995
992
|
this.startSpecial(Sequences.TextareaEnd, 4);
|
|
996
993
|
} else {
|
|
997
994
|
this.state = 6;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-core v3.4.
|
|
2
|
+
* @vue/compiler-core v3.4.20
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -680,11 +680,10 @@ class Tokenizer {
|
|
|
680
680
|
} else if (this.inSFCRoot) {
|
|
681
681
|
this.state = 34;
|
|
682
682
|
} else if (!this.inXML) {
|
|
683
|
-
|
|
684
|
-
if (lower === 116) {
|
|
683
|
+
if (c === 116) {
|
|
685
684
|
this.state = 30;
|
|
686
685
|
} else {
|
|
687
|
-
this.state =
|
|
686
|
+
this.state = c === 115 ? 29 : 6;
|
|
688
687
|
}
|
|
689
688
|
} else {
|
|
690
689
|
this.state = 6;
|
|
@@ -956,10 +955,9 @@ class Tokenizer {
|
|
|
956
955
|
}
|
|
957
956
|
}
|
|
958
957
|
stateBeforeSpecialS(c) {
|
|
959
|
-
|
|
960
|
-
if (lower === Sequences.ScriptEnd[3]) {
|
|
958
|
+
if (c === Sequences.ScriptEnd[3]) {
|
|
961
959
|
this.startSpecial(Sequences.ScriptEnd, 4);
|
|
962
|
-
} else if (
|
|
960
|
+
} else if (c === Sequences.StyleEnd[3]) {
|
|
963
961
|
this.startSpecial(Sequences.StyleEnd, 4);
|
|
964
962
|
} else {
|
|
965
963
|
this.state = 6;
|
|
@@ -967,10 +965,9 @@ class Tokenizer {
|
|
|
967
965
|
}
|
|
968
966
|
}
|
|
969
967
|
stateBeforeSpecialT(c) {
|
|
970
|
-
|
|
971
|
-
if (lower === Sequences.TitleEnd[3]) {
|
|
968
|
+
if (c === Sequences.TitleEnd[3]) {
|
|
972
969
|
this.startSpecial(Sequences.TitleEnd, 4);
|
|
973
|
-
} else if (
|
|
970
|
+
} else if (c === Sequences.TextareaEnd[3]) {
|
|
974
971
|
this.startSpecial(Sequences.TextareaEnd, 4);
|
|
975
972
|
} else {
|
|
976
973
|
this.state = 6;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/compiler-core",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.20",
|
|
4
4
|
"description": "@vue/compiler-core",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "dist/compiler-core.esm-bundler.js",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"entities": "^4.5.0",
|
|
51
51
|
"estree-walker": "^2.0.2",
|
|
52
52
|
"source-map-js": "^1.0.2",
|
|
53
|
-
"@vue/shared": "3.4.
|
|
53
|
+
"@vue/shared": "3.4.20"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@babel/types": "^7.23.9"
|