| Index: pkg/analyzer/test/generated/incremental_resolver_test.dart
|
| diff --git a/pkg/analyzer/test/generated/incremental_resolver_test.dart b/pkg/analyzer/test/generated/incremental_resolver_test.dart
|
| index c65b545fb8e0c34adcfd4b23edf7b366c3050b0d..3eb51e3ef47934e9aa0b052887f9aa519f83cc89 100644
|
| --- a/pkg/analyzer/test/generated/incremental_resolver_test.dart
|
| +++ b/pkg/analyzer/test/generated/incremental_resolver_test.dart
|
| @@ -2843,7 +2843,7 @@ main() {
|
| ''');
|
| }
|
|
|
| - void test_endOfLineComment_header_add() {
|
| + void test_endOfLineComment_outBody_add() {
|
| _resolveUnit(r'''
|
| main() {
|
| Object x;
|
| @@ -2856,10 +2856,10 @@ main() {
|
| Object x;
|
| x.foo();
|
| }
|
| -''');
|
| +''', expectedSuccess: false);
|
| }
|
|
|
| - void test_endOfLineComment_header_remove() {
|
| + void test_endOfLineComment_outBody_remove() {
|
| _resolveUnit(r'''
|
| // 000
|
| main() {
|
| @@ -2872,10 +2872,10 @@ main() {
|
| Object x;
|
| x.foo();
|
| }
|
| -''');
|
| +''', expectedSuccess: false);
|
| }
|
|
|
| - void test_endOfLineComment_header_update() {
|
| + void test_endOfLineComment_outBody_update() {
|
| _resolveUnit(r'''
|
| // 000
|
| main() {
|
| @@ -2889,7 +2889,7 @@ main() {
|
| Object x;
|
| x.foo();
|
| }
|
| -''');
|
| +''', expectedSuccess: false);
|
| }
|
|
|
| void test_endOfLineComment_localFunction_inTopLevelVariable() {
|
|
|