@vue/compiler-core 3.6.0-beta.1 → 3.6.0-beta.2

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.6.0-beta.1
2
+ * @vue/compiler-core v3.6.0-beta.2
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -1562,8 +1562,7 @@ function walkIdentifiers(root, onIdentifier, includeAll = false, parentStack = [
1562
1562
  if (includeAll || isRefed && !isLocal) {
1563
1563
  onIdentifier(node, parent, parentStack, isRefed, isLocal);
1564
1564
  }
1565
- } else if (node.type === "ObjectProperty" && // eslint-disable-next-line no-restricted-syntax
1566
- (parent == null ? void 0 : parent.type) === "ObjectPattern") {
1565
+ } else if (node.type === "ObjectProperty" && (parent == null ? void 0 : parent.type) === "ObjectPattern") {
1567
1566
  node.inPattern = true;
1568
1567
  } else if (isFunctionType(node)) {
1569
1568
  if (node.scopeIds) {
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/compiler-core v3.6.0-beta.1
2
+ * @vue/compiler-core v3.6.0-beta.2
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -1558,8 +1558,7 @@ function walkIdentifiers(root, onIdentifier, includeAll = false, parentStack = [
1558
1558
  if (includeAll || isRefed && !isLocal) {
1559
1559
  onIdentifier(node, parent, parentStack, isRefed, isLocal);
1560
1560
  }
1561
- } else if (node.type === "ObjectProperty" && // eslint-disable-next-line no-restricted-syntax
1562
- (parent == null ? void 0 : parent.type) === "ObjectPattern") {
1561
+ } else if (node.type === "ObjectProperty" && (parent == null ? void 0 : parent.type) === "ObjectPattern") {
1563
1562
  node.inPattern = true;
1564
1563
  } else if (isFunctionType(node)) {
1565
1564
  if (node.scopeIds) {
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/compiler-core v3.6.0-beta.1
2
+ * @vue/compiler-core v3.6.0-beta.2
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vue/compiler-core",
3
- "version": "3.6.0-beta.1",
3
+ "version": "3.6.0-beta.2",
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": "^7.0.0",
51
51
  "estree-walker": "^2.0.2",
52
52
  "source-map-js": "^1.2.1",
53
- "@vue/shared": "3.6.0-beta.1"
53
+ "@vue/shared": "3.6.0-beta.2"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@babel/types": "^7.28.5"