| Index: pkg/analyzer/test/generated/parser_test.dart
|
| diff --git a/pkg/analyzer/test/generated/parser_test.dart b/pkg/analyzer/test/generated/parser_test.dart
|
| index 3cf943dcf9308ae8071dbac9f1e57ac4b988cce3..514c0d70dcc052b36272cf69ffe245a82d2c5d03 100644
|
| --- a/pkg/analyzer/test/generated/parser_test.dart
|
| +++ b/pkg/analyzer/test/generated/parser_test.dart
|
| @@ -4629,6 +4629,15 @@ class SimpleParserTest extends ParserTestCase {
|
| ParserTestCase.parseCompilationUnit("class C { C() : a = \"\${(){}}\"; }");
|
| }
|
|
|
| + void test_import_as_show() {
|
| + ParserTestCase.parseCompilationUnit("import 'dart:math' as M show E;");
|
| + }
|
| +
|
| + void test_import_show_hide() {
|
| + ParserTestCase.parseCompilationUnit(
|
| + "import 'import1_lib.dart' show hide, show hide ugly;");
|
| + }
|
| +
|
| void test_isFunctionDeclaration_nameButNoReturn_block() {
|
| expect(_isFunctionDeclaration("f() {}"), isTrue);
|
| }
|
|
|