From 2dcee1fb8dbfa745cb293721a48e8e4579901600 Mon Sep 17 00:00:00 2001 From: rster20002 Date: Thu, 12 Aug 2021 12:44:01 +0200 Subject: [PATCH] Actually fix lint errors --- src/compiler/compile/render_dom/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/compiler/compile/render_dom/index.ts b/src/compiler/compile/render_dom/index.ts index f2efe39cca..211390233d 100644 --- a/src/compiler/compile/render_dom/index.ts +++ b/src/compiler/compile/render_dom/index.ts @@ -454,13 +454,13 @@ export default function dom( instance_javascript_with_ctx.push(b`#return_values[${index}] = ${id};`[0]); initializedIdentifiers.push(id.name); } - } + }; const slot_definitions_present = component.slots.size || component.compile_options.dev || uses_slots; if (slot_definitions_present) { - add_variable_to_ctx({ type: "Identifier", name: "#slots" }); - add_variable_to_ctx({ type: "Identifier", name: "$$scope" }); + add_variable_to_ctx({ type: 'Identifier', name: '#slots' }); + add_variable_to_ctx({ type: 'Identifier', name: '$$scope' }); } if (instance_javascript === null) {