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(jsx): correct source location when react-jsx and whitespace before jsx #61534

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

AviVahl
Copy link

@AviVahl AviVahl commented Apr 5, 2025

the code seemed to be using node.pos (node.getFullStart()) instead of node.getStart(), which caused the source location to be off.

now baselines match babel's output (which seems correct).

not sure about using getTokenPosOfNode() (used by getStart()), but didn't find any better way to do things internally.

fixes #61533

…e jsx

fixes microsoft#61533

the code seemed to be using `node.pos` (`node.getFullStart()`) instead of `node.getStart()`, which caused the source location to be off.

now baselines match babel's output (which seems correct).

not sure about using `getTokenPosOfNode()` (used by `getStart()`), but didn't find any better way to do things internally.
@typescript-bot typescript-bot added the For Uncommitted Bug PR for untriaged, rejected, closed or missing bug label Apr 5, 2025
original reported issue did not include any fragment, but pattern seems the same, so correct these as well
@AviVahl
Copy link
Author

AviVahl commented Apr 6, 2025

I've applied the same fix for fragments as well, as they seemed to use the same pattern for source location handling.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
For Uncommitted Bug PR for untriaged, rejected, closed or missing bug
Projects
Status: Not started
Development

Successfully merging this pull request may close these issues.

Wrong location generated for JSX with whitespace around it when react-jsxdev
2 participants