| Index: pkg/analyzer/test/generated/resolver_test.dart
|
| diff --git a/pkg/analyzer/test/generated/resolver_test.dart b/pkg/analyzer/test/generated/resolver_test.dart
|
| index 586a8235c2cb9798342ad83439f666108a27e58c..2aa2c1c20ea4e832b43da16cb05a42b642866d9f 100644
|
| --- a/pkg/analyzer/test/generated/resolver_test.dart
|
| +++ b/pkg/analyzer/test/generated/resolver_test.dart
|
| @@ -13264,8 +13264,18 @@ class TypeResolverVisitorTest extends EngineTestCase {
|
| _typeProvider = new TestTypeProvider();
|
| _visitor =
|
| new TypeResolverVisitor.con1(_library, librarySource, _typeProvider);
|
| - _implicitConstructorBuilder =
|
| - new ImplicitConstructorBuilder.con1(_library, librarySource, _typeProvider);
|
| + _implicitConstructorBuilder = new ImplicitConstructorBuilder(
|
| + librarySource,
|
| + _library.libraryElement,
|
| + _library.libraryScope,
|
| + _typeProvider,
|
| + (ClassElement classElement, ClassElement superclassElement, void computation())
|
| + {
|
| + // For these tests, we assume the classes for which implicit
|
| + // constructors need to be built are visited in proper dependency order,
|
| + // so we just invoke the computation immediately.
|
| + computation();
|
| + });
|
| }
|
|
|
| void test_visitCatchClause_exception() {
|
|
|