summaryrefslogtreecommitdiff
path: root/cli/tests/bundle/fixture11.out
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2020-10-20 14:10:42 +1100
committerGitHub <noreply@github.com>2020-10-20 14:10:42 +1100
commit57e95032c898cfdfe795e6924d402fdbe2ae59a8 (patch)
treee548b283d0129b5a1c00828f5a456cc094276bd1 /cli/tests/bundle/fixture11.out
parent034ab48086557af00216ffe311c71ad4eb0ec4d5 (diff)
feat(cli): add support for bundle --no-check (#8023)
Fixes #6686
Diffstat (limited to 'cli/tests/bundle/fixture11.out')
-rw-r--r--cli/tests/bundle/fixture11.out31
1 files changed, 31 insertions, 0 deletions
diff --git a/cli/tests/bundle/fixture11.out b/cli/tests/bundle/fixture11.out
new file mode 100644
index 000000000..2d1c966a1
--- /dev/null
+++ b/cli/tests/bundle/fixture11.out
@@ -0,0 +1,31 @@
+function a() {
+ console.log("a");
+}
+var O;
+(function(O1) {
+ O1[O1["A"] = 0] = "A";
+ O1[O1["B"] = 1] = "B";
+ O1[O1["C"] = 2] = "C";
+})((void 0) || (O = {
+}));
+const O1 = void 0;
+export { O1 as O };
+class A {
+ #a;
+ #c;
+ constructor(o = {
+ }){
+ const { a: a1 = a , c , } = o;
+ this.#a = a1;
+ this.#c = c;
+ }
+ a() {
+ this.#a();
+ }
+ c() {
+ console.log(this.#c);
+ }
+}
+const a2 = new A();
+a2.a();
+a2.c();