@vue/compiler-core 3.5.0-alpha.4 → 3.5.0-alpha.5
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.5.0-alpha.
|
|
2
|
+
* @vue/compiler-core v3.5.0-alpha.5
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -1713,7 +1713,7 @@ function isReferenced(node, parent, grandparent) {
|
|
|
1713
1713
|
if (parent.key === node) {
|
|
1714
1714
|
return !!parent.computed;
|
|
1715
1715
|
}
|
|
1716
|
-
return !grandparent
|
|
1716
|
+
return !grandparent;
|
|
1717
1717
|
case "ClassProperty":
|
|
1718
1718
|
if (parent.key === node) {
|
|
1719
1719
|
return !!parent.computed;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-core v3.5.0-alpha.
|
|
2
|
+
* @vue/compiler-core v3.5.0-alpha.5
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -1709,7 +1709,7 @@ function isReferenced(node, parent, grandparent) {
|
|
|
1709
1709
|
if (parent.key === node) {
|
|
1710
1710
|
return !!parent.computed;
|
|
1711
1711
|
}
|
|
1712
|
-
return !grandparent
|
|
1712
|
+
return !grandparent;
|
|
1713
1713
|
case "ClassProperty":
|
|
1714
1714
|
if (parent.key === node) {
|
|
1715
1715
|
return !!parent.computed;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/compiler-core",
|
|
3
|
-
"version": "3.5.0-alpha.
|
|
3
|
+
"version": "3.5.0-alpha.5",
|
|
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.2.0",
|
|
53
|
-
"@vue/shared": "3.5.0-alpha.
|
|
53
|
+
"@vue/shared": "3.5.0-alpha.5"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@babel/types": "^7.24.7"
|