Index: lib/src/info.dart |
diff --git a/lib/src/info.dart b/lib/src/info.dart |
index 0a786c0cef791e4bbc9d56b4441661cbf2e27733..ec0f3f3a50003c01afc93d139870c862f9ea2cb2 100644 |
--- a/lib/src/info.dart |
+++ b/lib/src/info.dart |
@@ -99,4 +99,14 @@ class _AstCloner extends AstCloner { |
clone.propagatedType = node.propagatedType; |
return clone; |
} |
+ |
+ // TODO(vsm): ResolutionCopier is apparently not copying the type here |
+ // either. |
+ @override |
+ AdjacentStrings visitAdjacentStrings(AdjacentStrings node) { |
vsm
2016/03/01 20:46:51
Should this be fixed upstream?
Jennifer Messerly
2016/03/01 20:51:10
Yeah, want me to do that?
BTW, you can probably d
|
+ var clone = super.visitAdjacentStrings(node); |
+ clone.staticType = node.staticType; |
+ clone.propagatedType = node.propagatedType; |
+ return clone; |
+ } |
} |