diff --git a/src/compiler/compile/css/Stylesheet.ts b/src/compiler/compile/css/Stylesheet.ts index 54427b183f..49f11bc1f2 100644 --- a/src/compiler/compile/css/Stylesheet.ts +++ b/src/compiler/compile/css/Stylesheet.ts @@ -269,7 +269,7 @@ export default class Stylesheet { this.has_styles = true; - const stack: Array = []; + const stack: Atrule[] = []; let depth = 0; let current_atrule: Atrule = null; diff --git a/src/compiler/compile/render_dom/wrappers/shared/bind_this.ts b/src/compiler/compile/render_dom/wrappers/shared/bind_this.ts index b321d6b022..571331fd4e 100644 --- a/src/compiler/compile/render_dom/wrappers/shared/bind_this.ts +++ b/src/compiler/compile/render_dom/wrappers/shared/bind_this.ts @@ -36,7 +36,7 @@ export default function bind_this(component: Component, block: Block, binding: B : deindent` ${lhs} = $$value; ${component.invalidate(object)}; - ` + `; } const contextual_dependencies = Array.from(binding.expression.contextual_dependencies);