This website requires JavaScript.
Explore
Help
Sign In
swc-project
/
swc
Watch
1
Star
1
Fork
0
You've already forked swc
mirror of
https://github.com/swc-project/swc.git
synced
2025-01-03 19:14:01 +03:00
Code
Issues
Actions
5
Packages
Projects
Releases
Wiki
Activity
e303f7e853
swc
/
crates
/
swc_ecma_minifier
/
tests
/
fixture
/
issues
/
5280
/
output.js
7 lines
112 B
JavaScript
Raw
Normal View
History
Unescape
Escape
fix(es/minifier): Preserve order of side-effects in sequences pass (#5283)
2022-07-24 16:55:37 +03:00
export
function
source
(
)
{
let
c
=
0
,
a
=
1
;
fix(es/minifier): Fix analysis of assignments (#5924) **Related issue:** - Closes https://github.com/swc-project/swc/issues/5910
2022-09-21 14:33:25 +03:00
c
+=
a
,
a
+=
5
;
let
b
=
c
;
console
.
log
(
a
,
b
,
c
)
;
fix(es/minifier): Preserve order of side-effects in sequences pass (#5283)
2022-07-24 16:55:37 +03:00
}
Reference in New Issue
Copy Permalink