Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix NodePath.referencesImport for JSXMemberExpression #14403

Merged
merged 5 commits into from Mar 31, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion packages/babel-traverse/src/path/introspection.ts
Expand Up @@ -181,7 +181,9 @@ export function referencesImport(
): boolean {
if (!this.isReferencedIdentifier()) {
if (
(this.isMemberExpression() || this.isOptionalMemberExpression()) &&
(this.isMemberExpression() ||
this.isJSXMemberExpression() ||
this.isOptionalMemberExpression()) &&
(this.node.computed
? isStringLiteral(this.node.property, { value: importName })
: (this.node.property as t.Identifier).name === importName)
swandir marked this conversation as resolved.
Show resolved Hide resolved
Expand Down
8 changes: 8 additions & 0 deletions packages/babel-traverse/test/introspection.js
Expand Up @@ -161,6 +161,14 @@ describe("path/introspection", function () {
const reference = program.get("body.1.expression");
expect(reference.referencesImport("source", "😅")).toBe(true);
});
it("accepts a named import via a namespace import jsx member expression", function () {
const program = getPath(`import * as ns from "source"; <ns.dep />;`, {
sourceType: "module",
plugins: ["jsx"],
});
const reference = program.get("body.1.expression.openingElement.name");
expect(reference.referencesImport("source", "dep")).toBe(true);
});
it("rejects a named import from the wrong module", function () {
const program = getPath(`import { dep } from "wrong-source"; dep;`, {
sourceType: "module",
Expand Down