From 002ef94e2387f9265e5276109e469e184f385a68 Mon Sep 17 00:00:00 2001 From: Daniel Freedman Date: Thu, 4 Apr 2019 12:12:26 -0700 Subject: [PATCH] fix closure compiler error --- lib/mixins/property-effects.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mixins/property-effects.js b/lib/mixins/property-effects.js index 05a41e0492..bff06951fd 100644 --- a/lib/mixins/property-effects.js +++ b/lib/mixins/property-effects.js @@ -1415,7 +1415,7 @@ export const PropertyEffects = dedupingMixin(superClass => { if (value !== node[prop] || typeof value == 'object') { // Note, className needs style scoping so this needs wrapping. if (prop === 'className') { - node = wrap(node); + node = /** @type {!Node} */(wrap(node)); } node[prop] = value; }