From b63fe3f35c6dd06059e3d34e566b95ed9ccf2724 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Sat, 21 Nov 2020 13:17:42 +0100 Subject: upgrade: deno_doc, deno_lint, dprint, swc (#8443) --- cli/tests/bundle/fixture10.out | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'cli/tests/bundle/fixture10.out') diff --git a/cli/tests/bundle/fixture10.out b/cli/tests/bundle/fixture10.out index 7436722b5..5491e5e7f 100644 --- a/cli/tests/bundle/fixture10.out +++ b/cli/tests/bundle/fixture10.out @@ -1,4 +1,5 @@ +const a = "a"; const o = { }; -const { a ="a" } = o; -console.log(a); +const { a: a1 = a } = o; +console.log(a1); -- cgit v1.2.3