Index: pkg/analyzer/test/src/summary/resynthesize_common.dart |
diff --git a/pkg/analyzer/test/src/summary/resynthesize_common.dart b/pkg/analyzer/test/src/summary/resynthesize_common.dart |
index 4a056b7c737ee50fdc98d9b47a436cf241cafb82..48293c1cceee3f49ee532298f2e75dcd6e2dcdd6 100644 |
--- a/pkg/analyzer/test/src/summary/resynthesize_common.dart |
+++ b/pkg/analyzer/test/src/summary/resynthesize_common.dart |
@@ -19,7 +19,7 @@ import 'package:analyzer/src/generated/engine.dart'; |
import 'package:analyzer/src/generated/resolver.dart' show Namespace; |
import 'package:analyzer/src/generated/sdk.dart'; |
import 'package:analyzer/src/generated/source.dart'; |
-import 'package:analyzer/src/generated/testing/ast_factory.dart'; |
+import 'package:analyzer/src/generated/testing/ast_test_factory.dart'; |
import 'package:analyzer/src/summary/idl.dart'; |
import 'package:analyzer/src/summary/resynthesize.dart'; |
import 'package:test/test.dart'; |
@@ -410,7 +410,9 @@ abstract class AbstractResynthesizeTest extends AbstractSingleUnitTest { |
PrefixedIdentifier oTarget = o.target; |
checkElidablePrefix(oTarget.prefix); |
compareConstAsts( |
- r, AstFactory.identifier(oTarget.identifier, o.propertyName), desc); |
+ r, |
+ AstTestFactory.identifier(oTarget.identifier, o.propertyName), |
+ desc); |
} else if (o is PrefixedIdentifier && r is PrefixedIdentifier) { |
compareConstAsts(r.prefix, o.prefix, desc); |
compareConstAsts(r.identifier, o.identifier, desc); |