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(babel-parser): Fix end of range of SequenceExpression #13731

Merged
merged 3 commits into from Sep 4, 2021

Conversation

sosukesuzuki
Copy link
Member

@sosukesuzuki sosukesuzuki commented Sep 3, 2021

Q                       A
Patch: Bug Fix? Y
Tests Added + Pass? Y
License MIT

Caused by #13521.

range[1] of SequenceExpression is 1 more than expected.

@babel-bot
Copy link
Collaborator

babel-bot commented Sep 3, 2021

Build successful! You can test your changes in the REPL here: https://babeljs.io/repl/build/48540/

@@ -1708,6 +1708,7 @@ export default class ExpressionParser extends LValParser {
this.finishNode(val, "SequenceExpression");
val.end = innerEndPos;
val.loc.end = innerEndLoc;
if (this.options.ranges) val.range[1] = innerEndPos;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can call resetEndLocation on val.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks 6f2ae6c

@codesandbox-ci
Copy link

codesandbox-ci bot commented Sep 4, 2021

This pull request is automatically built and testable in CodeSandbox.

To see build info of the built libraries, click here or the icon next to each commit SHA.

Latest deployment of this branch, based on commit 6f2ae6c:

Sandbox Source
babel-repl-custom-plugin Configuration
babel-plugin-multi-config Configuration

@nicolo-ribaudo nicolo-ribaudo merged commit 62e42a3 into babel:main Sep 4, 2021
@nicolo-ribaudo
Copy link
Member

The CI failure is not related

@sosukesuzuki sosukesuzuki deleted the fix-sequence-expr-range-end branch September 4, 2021 10:04
@github-actions github-actions bot added the outdated A closed issue/PR that is archived due to age. Recommended to make a new issue label Dec 5, 2021
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Dec 5, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
outdated A closed issue/PR that is archived due to age. Recommended to make a new issue pkg: parser PR: Bug Fix 🐛 A type of pull request used for our changelog categories
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants