diff options
Diffstat (limited to 'cli/tests/bundle/fixture09.out')
-rw-r--r-- | cli/tests/bundle/fixture09.out | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/cli/tests/bundle/fixture09.out b/cli/tests/bundle/fixture09.out index 7f9646946..e7396f493 100644 --- a/cli/tests/bundle/fixture09.out +++ b/cli/tests/bundle/fixture09.out @@ -1,4 +1,4 @@ -const _i = function() { +const mod = function() { function a(...d) { return d.join(" "); } @@ -6,7 +6,7 @@ const _i = function() { a }; }(); -const _j = function() { +const mod1 = function() { function a(...d) { return d.join("/"); } @@ -14,6 +14,7 @@ const _j = function() { a }; }(); -const k = globalThis.value ? _i : _j; -const { a , } = k; -export { a }; +const k = globalThis.value ? mod : mod1; +const { a: a2 , } = k; +const a1 = a2; +export { a1 as a }; |