-
-
Notifications
You must be signed in to change notification settings - Fork 503
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(mangler): handle cases where a var is declared in a block scope (#…
…8706) This PR fixes the mangler that it was outputting `function _() { { var a; let a; } }` for `function _() { { var x; let y; } }`. This caused this error: https://github.com/oxc-project/monitor-oxc/actions/runs/12962575667/job/36159286596#step:8:31 refs #8705
- Loading branch information
1 parent
d982cdb
commit 33de70a
Showing
3 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters