From 2549e9fa0e13d132488c7873bf545bee76d50d15 Mon Sep 17 00:00:00 2001 From: Conduitry Date: Sat, 29 Feb 2020 09:11:03 -0500 Subject: [PATCH] tidy --- src/compiler/compile/Component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/compile/Component.ts b/src/compiler/compile/Component.ts index 5985d75ca8..2569820464 100644 --- a/src/compiler/compile/Component.ts +++ b/src/compiler/compile/Component.ts @@ -804,7 +804,7 @@ export default class Component { : module_scope && module_scope.has(name) ) { const variable = component.var_lookup.get(name); - variable[deep ? "mutated" : "reassigned"] = true; + variable[deep ? 'mutated' : 'reassigned'] = true; } }); }