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
2024-12-22 05:01:42 +03:00
Code
Issues
Actions
2
Packages
Projects
Releases
Wiki
Activity
c32f42b374
swc
/
crates
/
swc_bundler
/
tests
/
fixture
/
deno-8302
/
1
/
output
/
entry.inlined.js
7 lines
85 B
JavaScript
Raw
Normal View
History
Unescape
Escape
fix(bundler): Fix bugs (#1342) swc_bundler: - Add a testing system for constant inliner. swc_ecma_transforms_optimization: - const_propagation: Handle export specifiers. - const_propagation: Handle inlining of variables whose initializer is inlined. - dce: Allow dropping identifiers used in `exported` part of export specifiers.
2021-01-20 10:10:12 +03:00
class
A
{
}
fix(bundler): Fix bugs (#1349) swc_bundler: - Fix deglobbing of imports. (denoland/deno#8985) - Use correct syntax context while deglobbing imports. (denoland/deno#9212) - Allow reexporting from wrapped esms. (denoland/deno#8959, denoland/deno#9200) - Fix statement orderings. (denoland/deno#9250) - Emit injected items as early as possible. (denoland/deno#9250) - Respect `external_modules`. (#1338) - Fix cjs suppport. (#1328) swc_ecma_transforms_base: - hygiene: Fix for hoisting. (denoland/deno#9212)
2021-01-25 15:15:42 +03:00
console
.
log
(
2
,
A
)
;
fix(bundler): Fix bugs (#1342) swc_bundler: - Add a testing system for constant inliner. swc_ecma_transforms_optimization: - const_propagation: Handle export specifiers. - const_propagation: Handle inlining of variables whose initializer is inlined. - dce: Allow dropping identifiers used in `exported` part of export specifiers.
2021-01-20 10:10:12 +03:00
console
.
log
(
1
,
A
)
;
fix(bundler): Fix bundler (#1427) swc_bundler: - Create variables for export while preparing a module. (denoland/deno#9560) - Fix order of statements. - Invoke dce multiple time if required. (denoland/deno#9546) swc_ecma_transforms_optimization: - dce: Track modifications correctly.
2021-02-26 12:21:42 +03:00
console
.
log
(
3
,
A
)
;
fix(bundler): Fix bugs (#1342) swc_bundler: - Add a testing system for constant inliner. swc_ecma_transforms_optimization: - const_propagation: Handle export specifiers. - const_propagation: Handle inlining of variables whose initializer is inlined. - dce: Allow dropping identifiers used in `exported` part of export specifiers.
2021-01-20 10:10:12 +03:00
console
.
log
(
1
)
;
Reference in New Issue
Copy Permalink