| Index: pkg/front_end/lib/src/fasta/run.dart
|
| diff --git a/pkg/front_end/lib/src/fasta/run.dart b/pkg/front_end/lib/src/fasta/run.dart
|
| index 6a3ef241cbe32913ba82f227b5041c70424addff..d7f812fe9232116afb5b2950892541ce63bc4f99 100644
|
| --- a/pkg/front_end/lib/src/fasta/run.dart
|
| +++ b/pkg/front_end/lib/src/fasta/run.dart
|
| @@ -4,27 +4,21 @@
|
|
|
| library fasta.run;
|
|
|
| -import 'dart:async' show
|
| - Future;
|
| +import 'dart:async' show Future;
|
|
|
| -import 'dart:io' show
|
| - stdout;
|
| +import 'dart:io' show stdout;
|
|
|
| -import 'package:testing/testing.dart' show
|
| - StdioProcess;
|
| +import 'package:testing/testing.dart' show StdioProcess;
|
|
|
| -import 'testing/kernel_chain.dart' show
|
| - computeDartVm,
|
| - computePatchedSdk;
|
| +import 'testing/kernel_chain.dart' show computeDartVm, computePatchedSdk;
|
|
|
| -import 'compiler_context.dart' show
|
| - CompilerContext;
|
| +import 'compiler_context.dart' show CompilerContext;
|
|
|
| Future<int> run(Uri uri, CompilerContext c) async {
|
| Uri sdk = await computePatchedSdk();
|
| Uri dartVm = computeDartVm(sdk);
|
| List<String> arguments = <String>["${uri.toFilePath()}"]
|
| - ..addAll(c.options.arguments.skip(1));
|
| + ..addAll(c.options.arguments.skip(1));
|
| if (c.options.verbose) {
|
| print("Running ${dartVm.toFilePath()} ${arguments.join(' ')}");
|
| }
|
|
|