diff options
Diffstat (limited to 'cli/tests/bundle/fixture11.out')
-rw-r--r-- | cli/tests/bundle/fixture11.out | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/tests/bundle/fixture11.out b/cli/tests/bundle/fixture11.out index 526693ef2..c09f0cac9 100644 --- a/cli/tests/bundle/fixture11.out +++ b/cli/tests/bundle/fixture11.out @@ -1,15 +1,13 @@ function a() { console.log("a"); } -var O; +var O2; (function(O1) { O1[O1["A"] = 0] = "A"; O1[O1["B"] = 1] = "B"; O1[O1["C"] = 2] = "C"; -})(O || (O = { +})(O2 || (O2 = { })); -const O1 = O; -export { O1 as O }; class A { #a; #c; @@ -29,3 +27,5 @@ class A { const a2 = new A(); a2.a(); a2.c(); +const O1 = O2; +export { O1 as O }; |