aa246f6588
Reduces the noise when disallowing implicit dynamic. Change-Id: I98b03cb675ecd4b9e7f4135efa274fb57eb87832 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/104164 Reviewed-by: Nicholas Shahan <nshahan@google.com> Commit-Queue: Nate Bosch <nbosch@google.com>
24 lines
607 B
Dart
24 lines
607 B
Dart
import 'package:testing/testing.dart';
|
|
|
|
import 'common.dart';
|
|
import 'ddc_common.dart';
|
|
import 'sourcemaps_ddc_suite.dart' as ddc;
|
|
|
|
Future<ChainContext> createContext(
|
|
Chain suite, Map<String, String> environment) async {
|
|
return StackTraceContext();
|
|
}
|
|
|
|
class StackTraceContext extends ChainContextWithCleanupHelper {
|
|
@override
|
|
final List<Step> steps = <Step>[
|
|
const Setup(),
|
|
const SetCwdToSdkRoot(),
|
|
const TestStackTrace(
|
|
ddc.DevCompilerRunner(false), "ddc.", ["ddc.", "ddk."]),
|
|
];
|
|
}
|
|
|
|
void main(List<String> arguments) =>
|
|
runMe(arguments, createContext, "testing.json");
|