| Index: pkg/front_end/lib/src/fasta/builder/builder.dart
|
| diff --git a/pkg/front_end/lib/src/fasta/builder/builder.dart b/pkg/front_end/lib/src/fasta/builder/builder.dart
|
| index 940bc78207247f717219570d50d7832138f103e2..50fb7afd362ecb035446e36044ef0e2a8bf00974 100644
|
| --- a/pkg/front_end/lib/src/fasta/builder/builder.dart
|
| +++ b/pkg/front_end/lib/src/fasta/builder/builder.dart
|
| @@ -61,8 +61,8 @@ import 'library_builder.dart' show LibraryBuilder;
|
| import 'package:front_end/src/fasta/builder/class_builder.dart'
|
| show ClassBuilder;
|
|
|
| -import 'package:front_end/src/fasta/type_inference/type_inferrer.dart'
|
| - show TypeInferrer;
|
| +import 'package:front_end/src/fasta/type_inference/type_inference_engine.dart'
|
| + show TypeInferenceEngine;
|
|
|
| abstract class Builder {
|
| /// Used when multiple things with the same name are declared within the same
|
| @@ -139,6 +139,6 @@ abstract class Builder {
|
| return internalError("No library parent.");
|
| }
|
|
|
| - void prepareInitializerInference(TypeInferrer typeInferrer,
|
| + void prepareInitializerInference(TypeInferenceEngine typeInferenceEngine,
|
| LibraryBuilder library, ClassBuilder currentClass) {}
|
| }
|
|
|