cdd1260ef0
This same error recently surfaced on a flutter web target. Change-Id: If4c093cde85887105e93ab46469b1c3b2ea55d03 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/162243 Reviewed-by: Alexander Markov <alexmarkov@google.com> Commit-Queue: Nicholas Shahan <nshahan@google.com>
19 lines
701 B
Dart
19 lines
701 B
Dart
// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
// OtherResources=../../../../tests/language/mixin/regress_flutter_55345_test.dart
|
|
|
|
// Runs regress_flutter_55345_test.dart using AOT kernel generation split into
|
|
// 2 steps using '--from-dill' option.
|
|
|
|
import 'dart:io' show Platform;
|
|
|
|
import 'split_aot_kernel_generation_test.dart'
|
|
show runSplitAOTKernelGenerationTest;
|
|
|
|
main() async {
|
|
await runSplitAOTKernelGenerationTest(Platform.script.resolve(
|
|
'../../../../tests/language/mixin/regress_flutter_55345_test.dart'));
|
|
}
|