Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Commit ce6e58f

Browse files
committed
chore(compiler): remove unused, expired code
1 parent d099db5 commit ce6e58f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/core_dom/compiler.dart

+1-2
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,9 @@ class Compiler {
176176
mappingFn = (NodeAttrs attrs, Scope scope, Object dst) {
177177
if (attrs[attrName] == null) return;
178178
Expression attrExprFn = _parser(attrs[attrName]);
179-
var shadowValue = null;
180179
scope.$watch(
181180
() => attrExprFn.eval(scope),
182-
(v) => dstPathFn.assign(dst, shadowValue = v),
181+
(v) => dstPathFn.assign(dst, v),
183182
attrs[attrName]);
184183
};
185184
break;

0 commit comments

Comments
 (0)