| Index: pkg/front_end/test/fasta/compile_test.dart
|
| diff --git a/pkg/front_end/test/fasta/compile_test.dart b/pkg/front_end/test/fasta/compile_test.dart
|
| index cba409788e3af2d6febe8d9b9b4f83800c76b1ad..00a6a6957fa06db63cb0421e4a9da084727e7050 100644
|
| --- a/pkg/front_end/test/fasta/compile_test.dart
|
| +++ b/pkg/front_end/test/fasta/compile_test.dart
|
| @@ -4,16 +4,15 @@
|
|
|
| library fasta.test.compile_test;
|
|
|
| -import 'dart:async' show
|
| - Future;
|
| +import 'dart:async' show Future;
|
|
|
| import 'package:front_end/src/fasta/testing/suite.dart';
|
|
|
| -Future<FeContext> createContext(
|
| +Future<FastaContext> createContext(
|
| Chain suite, Map<String, String> environment) {
|
| environment[ENABLE_FULL_COMPILE] = "";
|
| environment[AST_KIND_INDEX] = "${AstKind.Kernel.index}";
|
| - return TestContext.create(suite, environment, FeContext.create);
|
| + return FastaContext.create(suite, environment);
|
| }
|
|
|
| main(List<String> arguments) => runMe(arguments, createContext, "testing.json");
|
|
|