2d82fb42ce
Change-Id: I7e7b18d90ae8518c700607ec383c73a0eda5a299 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/130726 Reviewed-by: Nicholas Shahan <nshahan@google.com> Commit-Queue: Nicholas Shahan <nshahan@google.com> Auto-Submit: Nate Bosch <nbosch@google.com>
33 lines
846 B
Dart
33 lines
846 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, debugging: false), 'ddk',
|
|
const ['ddk', 'ddc']),
|
|
];
|
|
}
|
|
}
|
|
|
|
void main(List<String> arguments) =>
|
|
runMe(arguments, createContext, configurationPath: 'testing.json');
|