@babel/plugin-transform-react-constant-elements
Advanced tools
Comparing version 7.21.4-esm.3 to 7.21.4-esm.4
@@ -1,10 +0,4 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
exports.default = void 0; | ||
var _helperPluginUtils = require("@babel/helper-plugin-utils"); | ||
var _core = require("@babel/core"); | ||
var _default = (0, _helperPluginUtils.declare)((api, options) => { | ||
import { declare } from "@babel/helper-plugin-utils"; | ||
import { types as t, template } from "@babel/core"; | ||
export default declare((api, options) => { | ||
api.assertVersion(7); | ||
@@ -19,9 +13,9 @@ const { | ||
function declares(node, scope) { | ||
if (_core.types.isJSXIdentifier(node, { | ||
if (t.isJSXIdentifier(node, { | ||
name: "this" | ||
}) || _core.types.isJSXIdentifier(node, { | ||
}) || t.isJSXIdentifier(node, { | ||
name: "arguments" | ||
}) || _core.types.isJSXIdentifier(node, { | ||
}) || t.isJSXIdentifier(node, { | ||
name: "super" | ||
}) || _core.types.isJSXIdentifier(node, { | ||
}) || t.isJSXIdentifier(node, { | ||
name: "new" | ||
@@ -114,3 +108,3 @@ })) { | ||
} | ||
} else if (_core.types.isIdentifier(expressionResult.deopt)) { | ||
} else if (t.isIdentifier(expressionResult.deopt)) { | ||
return; | ||
@@ -132,3 +126,3 @@ } | ||
let lastSegment = name; | ||
while (_core.types.isJSXMemberExpression(lastSegment)) { | ||
while (t.isJSXMemberExpression(lastSegment)) { | ||
lastSegment = lastSegment.property; | ||
@@ -168,10 +162,10 @@ } | ||
targetScope.push({ | ||
id: _core.types.identifier(id) | ||
id: t.identifier(id) | ||
}); | ||
HOISTED.set(path.node, targetScope); | ||
let replacement = _core.template.expression.ast` | ||
${_core.types.identifier(id)} || (${_core.types.identifier(id)} = ${path.node}) | ||
let replacement = template.expression.ast` | ||
${t.identifier(id)} || (${t.identifier(id)} = ${path.node}) | ||
`; | ||
if (path.parentPath.isJSXElement() || path.parentPath.isJSXAttribute()) { | ||
replacement = _core.types.jsxExpressionContainer(replacement); | ||
replacement = t.jsxExpressionContainer(replacement); | ||
} | ||
@@ -183,4 +177,3 @@ path.replaceWith(replacement); | ||
}); | ||
exports.default = _default; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@babel/plugin-transform-react-constant-elements", | ||
"version": "7.21.4-esm.3", | ||
"version": "7.21.4-esm.4", | ||
"description": "Treat React JSX elements as value types and hoist them to the highest scope", | ||
@@ -20,3 +20,3 @@ "repository": { | ||
"dependencies": { | ||
"@babel/helper-plugin-utils": "7.21.4-esm.3" | ||
"@babel/helper-plugin-utils": "7.21.4-esm.4" | ||
}, | ||
@@ -27,4 +27,4 @@ "peerDependencies": { | ||
"devDependencies": { | ||
"@babel/core": "7.21.4-esm.3", | ||
"@babel/helper-plugin-test-runner": "7.21.4-esm.3" | ||
"@babel/core": "7.21.4-esm.4", | ||
"@babel/helper-plugin-test-runner": "7.21.4-esm.4" | ||
}, | ||
@@ -31,0 +31,0 @@ "engines": { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6
22988
173
+ Added@babel/helper-plugin-utils@7.21.4-esm.4(transitive)
- Removed@babel/helper-plugin-utils@7.21.4-esm.3(transitive)