| Index: tests/compiler/dart2js/analyze_only_test.dart
|
| diff --git a/tests/compiler/dart2js/analyze_only_test.dart b/tests/compiler/dart2js/analyze_only_test.dart
|
| index 516c0d178419854ef0780f380b72f19ce370f43c..785d3f81c9ba47527300178f08ccb80d1584ad00 100644
|
| --- a/tests/compiler/dart2js/analyze_only_test.dart
|
| +++ b/tests/compiler/dart2js/analyze_only_test.dart
|
| @@ -64,7 +64,7 @@ runCompiler(String main, List<String> options,
|
| main() {
|
| runCompiler(
|
| "",
|
| - [],
|
| + ['--generate-code-with-compile-time-errors'],
|
| (String code, List errors, List warnings) {
|
| Expect.isNotNull(code);
|
| Expect.isTrue(errors.isEmpty, 'errors is not empty: $errors');
|
| @@ -75,7 +75,7 @@ main() {
|
|
|
| runCompiler(
|
| "main() {}",
|
| - [],
|
| + ['--generate-code-with-compile-time-errors'],
|
| (String code, List errors, List warnings) {
|
| Expect.isNotNull(code);
|
| Expect.isTrue(errors.isEmpty);
|
|
|