chore: analyzer fixes for Dart transformer

This commit is contained in:
Kevin Moore
2015-04-01 13:47:42 -07:00
committed by Rado Kirov
parent 25c709c58e
commit d77f409093
4 changed files with 11 additions and 14 deletions
@@ -77,7 +77,7 @@ class _ReflectorVisitor extends Object with SimpleAstVisitor<Expression> {
@override
Expression visitPropertyAccess(PropertyAccess node) {
if (node == null || node.target == null) return;
if (node == null || node.target == null) return null;
return node.target;
}