| Index: pkg/analyzer/test/generated/non_error_resolver_test.dart
|
| diff --git a/pkg/analyzer/test/generated/non_error_resolver_test.dart b/pkg/analyzer/test/generated/non_error_resolver_test.dart
|
| index 8b4cd5e370d360427d673a97246736f2a2ebe2f6..28f721e735070c5eb6cf674b7810aa4264f2905e 100644
|
| --- a/pkg/analyzer/test/generated/non_error_resolver_test.dart
|
| +++ b/pkg/analyzer/test/generated/non_error_resolver_test.dart
|
| @@ -5581,26 +5581,6 @@ class B extends A<List> {
|
| verify([source]);
|
| }
|
|
|
| - void test_undefinedIdentifier_hide() {
|
| - Source source = addSource(r'''
|
| -library L;
|
| -export 'lib1.dart' hide a;''');
|
| - addNamedSource("/lib1.dart", "library lib1;");
|
| - computeLibrarySourceErrors(source);
|
| - assertNoErrors(source);
|
| - verify([source]);
|
| - }
|
| -
|
| - void test_undefinedIdentifier_show() {
|
| - Source source = addSource(r'''
|
| -library L;
|
| -export 'lib1.dart' show a;''');
|
| - addNamedSource("/lib1.dart", "library lib1;");
|
| - computeLibrarySourceErrors(source);
|
| - assertNoErrors(source);
|
| - verify([source]);
|
| - }
|
| -
|
| void test_undefinedIdentifier_synthetic_whenExpression() {
|
| Source source = addSource(r'''
|
| print(x) {}
|
|
|