| 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 15086b85d56de937fe98032836334a2af05b1e63..c4bd3e8ec1fd7a9cdc0f946d326edec9177691ec 100644
|
| --- a/pkg/analyzer/test/generated/incremental_resolver_test.dart
|
| +++ b/pkg/analyzer/test/generated/incremental_resolver_test.dart
|
| @@ -1047,6 +1047,26 @@ class A<T> {}
|
| ''');
|
| }
|
|
|
| + void test_true_classMemberAccessor_getterSetter() {
|
| + _assertCompilationUnitMatches(true, r'''
|
| +class A {
|
| + int _test;
|
| + get test => _test;
|
| + set test(v) {
|
| + _test = v;
|
| + }
|
| +}
|
| +''', r'''
|
| +class A {
|
| + int _test;
|
| + get test => _test;
|
| + set test(v) {
|
| + _test = v;
|
| + }
|
| +}
|
| +''');
|
| + }
|
| +
|
| void test_true_classMemberAccessor_list_reorder() {
|
| _assertCompilationUnitMatches(true, r'''
|
| class A {
|
| @@ -1600,6 +1620,16 @@ dynamic a() {}
|
| ''');
|
| }
|
|
|
| + void test_true_type_hasImportPrefix() {
|
| + _assertCompilationUnitMatches(true, r'''
|
| +import 'dart:async' as async;
|
| +async.Future F;
|
| +''', r'''
|
| +import 'dart:async' as async;
|
| +async.Future F;
|
| +''');
|
| + }
|
| +
|
| void test_true_type_noTypeArguments_implyAllDynamic() {
|
| _assertCompilationUnitMatches(true, r'''
|
| class A<T> {}
|
|
|