| Index: pkg/analyzer/test/generated/compile_time_error_code_test.dart
|
| diff --git a/pkg/analyzer/test/generated/compile_time_error_code_test.dart b/pkg/analyzer/test/generated/compile_time_error_code_test.dart
|
| index 494062f396579ac7bf72972175fb3d1afafc4c8b..b3e4254ccfcfcb53902a763c910b3cd625367112 100644
|
| --- a/pkg/analyzer/test/generated/compile_time_error_code_test.dart
|
| +++ b/pkg/analyzer/test/generated/compile_time_error_code_test.dart
|
| @@ -4584,7 +4584,8 @@ f() {
|
| }
|
|
|
| test_nonConstValueInInitializer_assert_condition() async {
|
| - resetWithOptions(new AnalysisOptionsImpl()..enableAssertInitializer = true);
|
| + resetWith(
|
| + options: new AnalysisOptionsImpl()..enableAssertInitializer = true);
|
| Source source = addSource(r'''
|
| class A {
|
| const A(int i) : assert(i.isNegative);
|
| @@ -4596,7 +4597,8 @@ class A {
|
| }
|
|
|
| test_nonConstValueInInitializer_assert_message() async {
|
| - resetWithOptions(new AnalysisOptionsImpl()..enableAssertInitializer = true);
|
| + resetWith(
|
| + options: new AnalysisOptionsImpl()..enableAssertInitializer = true);
|
| Source source = addSource(r'''
|
| class A {
|
| const A(int i) : assert(i < 0, 'isNegative = ${i.isNegative}');
|
|
|