diff options
| author | Kitson Kelly <me@kitsonkelly.com> | 2020-10-20 14:10:42 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-20 14:10:42 +1100 |
| commit | 57e95032c898cfdfe795e6924d402fdbe2ae59a8 (patch) | |
| tree | e548b283d0129b5a1c00828f5a456cc094276bd1 /cli/tests/bundle/fixture07.out | |
| parent | 034ab48086557af00216ffe311c71ad4eb0ec4d5 (diff) | |
feat(cli): add support for bundle --no-check (#8023)
Fixes #6686
Diffstat (limited to 'cli/tests/bundle/fixture07.out')
| -rw-r--r-- | cli/tests/bundle/fixture07.out | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/cli/tests/bundle/fixture07.out b/cli/tests/bundle/fixture07.out new file mode 100644 index 000000000..39e6a11e8 --- /dev/null +++ b/cli/tests/bundle/fixture07.out @@ -0,0 +1,23 @@ +const g = []; +class G { + #g; + constructor(shared){ + if (shared) { + this.#g = g; + } else { + this.#g = []; + } + } +} +const g1 = []; +class H { + #g; + constructor(shared1){ + if (shared1) { + this.#g = g1; + } else { + this.#g = []; + } + } +} +console.log(new G(true), new H(true)); |
