| Index: pkg/front_end/test/fasta/testing/suite.dart
|
| diff --git a/pkg/front_end/test/fasta/testing/suite.dart b/pkg/front_end/test/fasta/testing/suite.dart
|
| index 3603e49470830e832464501454f9697093207790..1ae951738396e12afae8495216b5f01a748978cb 100644
|
| --- a/pkg/front_end/test/fasta/testing/suite.dart
|
| +++ b/pkg/front_end/test/fasta/testing/suite.dart
|
| @@ -216,14 +216,15 @@ class Outline extends Step<TestDescription, Program, FastaContext> {
|
| Program p;
|
| try {
|
| sourceTarget.read(description.uri);
|
| - await dillTarget.writeOutline(null);
|
| + await dillTarget.computeOutline();
|
| ValidatingInstrumentation instrumentation;
|
| if (strongMode) {
|
| instrumentation = new ValidatingInstrumentation();
|
| await instrumentation.loadExpectations(description.uri);
|
| sourceTarget.loader.instrumentation = instrumentation;
|
| }
|
| - p = await sourceTarget.writeOutline(null);
|
| + await sourceTarget.computeOutline();
|
| + p = sourceTarget.program;
|
| if (fullCompile) {
|
| p = await sourceTarget.writeProgram(null);
|
| instrumentation?.finish();
|
|
|