We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c049a8 commit 316d1b6Copy full SHA for 316d1b6
pkg/dev_compiler/lib/src/info.dart
@@ -90,11 +90,11 @@ class _AstCloner extends AstCloner {
90
return clone;
91
}
92
93
- // TODO(jmesserly): as a workaround for analyzer <0.26.0-alpha.1.
94
- // ResolutionCopier won't copy the type, so we do it here.
+ // TODO(vsm): ResolutionCopier is apparently not copying the type here
+ // either.
95
@override
96
- AwaitExpression visitAwaitExpression(AwaitExpression node) {
97
- var clone = super.visitAwaitExpression(node);
+ AdjacentStrings visitAdjacentStrings(AdjacentStrings node) {
+ var clone = super.visitAdjacentStrings(node);
98
clone.staticType = node.staticType;
99
clone.propagatedType = node.propagatedType;
100
0 commit comments