| 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 8b664f98014ae062ce88ebf9814d3267451cefc6..40dfb9c350eef21202064d2cb9eeb05540bdc9e6 100644
|
| --- a/pkg/analyzer/test/generated/incremental_resolver_test.dart
|
| +++ b/pkg/analyzer/test/generated/incremental_resolver_test.dart
|
| @@ -2810,6 +2810,23 @@ class A {
|
| _resetWithIncremental(true);
|
| }
|
|
|
| + void test_computeConstants() {
|
| + _resolveUnit(r'''
|
| +int f() => 0;
|
| +main() {
|
| + const x = f();
|
| + print(x + 1);
|
| +}
|
| +''');
|
| + _updateAndValidate(r'''
|
| +int f() => 0;
|
| +main() {
|
| + const x = f();
|
| + print(x + 2);
|
| +}
|
| +''');
|
| + }
|
| +
|
| void test_dartDoc_beforeField() {
|
| _resolveUnit(r'''
|
| class A {
|
|
|