| 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 1ae951738396e12afae8495216b5f01a748978cb..50f369bd2f1556a38b35d7df36d5c79ecbaa5a1a 100644
|
| --- a/pkg/front_end/test/fasta/testing/suite.dart
|
| +++ b/pkg/front_end/test/fasta/testing/suite.dart
|
| @@ -216,17 +216,16 @@ class Outline extends Step<TestDescription, Program, FastaContext> {
|
| Program p;
|
| try {
|
| sourceTarget.read(description.uri);
|
| - await dillTarget.computeOutline();
|
| + await dillTarget.buildOutlines();
|
| ValidatingInstrumentation instrumentation;
|
| if (strongMode) {
|
| instrumentation = new ValidatingInstrumentation();
|
| await instrumentation.loadExpectations(description.uri);
|
| sourceTarget.loader.instrumentation = instrumentation;
|
| }
|
| - await sourceTarget.computeOutline();
|
| - p = sourceTarget.program;
|
| + p = await sourceTarget.buildOutlines();
|
| if (fullCompile) {
|
| - p = await sourceTarget.writeProgram(null);
|
| + p = await sourceTarget.buildProgram();
|
| instrumentation?.finish();
|
| if (instrumentation != null && instrumentation.hasProblems) {
|
| if (updateComments) {
|
|
|