04e329b6ed
Previously 36% of overrides were annotated, including inconsistent annotations within a single class. - Add annotations on remaining overridden methods. - Add linter section to `analysis_options.yaml` so that missing annotations are visible while editing. Change-Id: Ief1a6d5b8da6f4b630a6cfc72a6ed67db346c081 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/103140 Reviewed-by: Vijay Menon <vsm@google.com> Reviewed-by: Nicholas Shahan <nshahan@google.com>
32 lines
811 B
Dart
32 lines
811 B
Dart
import 'package:front_end/src/api_unstable/ddc.dart' as fe;
|
|
import 'package:testing/testing.dart';
|
|
|
|
import 'common.dart';
|
|
import 'ddc_common.dart';
|
|
import 'sourcemaps_ddk_suite.dart' as ddk;
|
|
|
|
Future<ChainContext> createContext(
|
|
Chain suite, Map<String, String> environment) async {
|
|
return StackTraceContext();
|
|
}
|
|
|
|
class StackTraceContext extends ChainContextWithCleanupHelper
|
|
implements WithCompilerState {
|
|
@override
|
|
fe.InitializedCompilerState compilerState;
|
|
|
|
List<Step> _steps;
|
|
|
|
@override
|
|
List<Step> get steps {
|
|
return _steps ??= <Step>[
|
|
const Setup(),
|
|
const SetCwdToSdkRoot(),
|
|
TestStackTrace(
|
|
ddk.DevCompilerRunner(this, false), "ddk.", const ["ddk.", "ddc."]),
|
|
];
|
|
}
|
|
}
|
|
|
|
main(List<String> arguments) => runMe(arguments, createContext, "testing.json");
|