Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
lydell committed Feb 5, 2024
1 parent bd52a05 commit b4b52e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shared.js
Original file line number Diff line number Diff line change
Expand Up @@ -842,7 +842,7 @@ function getSourceTextAndKind(sourceCode, node) {
);
// istanbul ignore next
default:
throw new Error(`Unsupported import node type: ${node.type}`);
throw new Error(`Unsupported import/export node type: ${node.type}`);
}
}

Expand Down

0 comments on commit b4b52e2

Please sign in to comment.