| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import 'package:analyzer/dart/ast/ast.dart'; | 5 import 'package:analyzer/dart/ast/ast.dart'; |
| 6 import 'package:analyzer/dart/ast/token.dart' as analyzer; | 6 import 'package:analyzer/dart/ast/token.dart' as analyzer; |
| 7 import 'package:analyzer/error/error.dart'; | 7 import 'package:analyzer/error/error.dart'; |
| 8 import 'package:analyzer/src/dart/scanner/scanner.dart'; | 8 import 'package:analyzer/src/dart/scanner/scanner.dart'; |
| 9 import 'package:analyzer/src/fasta/ast_builder.dart'; | 9 import 'package:analyzer/src/fasta/ast_builder.dart'; |
| 10 import 'package:analyzer/src/generated/parser.dart' as analyzer; | 10 import 'package:analyzer/src/generated/parser.dart' as analyzer; |
| 11 import 'package:analyzer/src/generated/utilities_dart.dart'; | 11 import 'package:analyzer/src/generated/utilities_dart.dart'; |
| 12 import 'package:analyzer/src/string_source.dart'; | 12 import 'package:analyzer/src/string_source.dart'; |
| 13 import 'package:front_end/src/fasta/fasta_codes.dart' show Message; | 13 import 'package:front_end/src/fasta/fasta_codes.dart' show Message; |
| 14 import 'package:front_end/src/fasta/kernel/kernel_builder.dart'; | 14 import 'package:front_end/src/fasta/kernel/kernel_builder.dart'; |
| 15 import 'package:front_end/src/fasta/kernel/kernel_library_builder.dart'; | 15 import 'package:front_end/src/fasta/kernel/kernel_library_builder.dart'; |
| 16 import 'package:front_end/src/fasta/parser/identifier_context.dart' | 16 import 'package:front_end/src/fasta/parser.dart' show IdentifierContext; |
| 17 show IdentifierContext; | 17 import 'package:front_end/src/fasta/parser.dart' as fasta; |
| 18 import 'package:front_end/src/fasta/parser/parser.dart' as fasta; | |
| 19 import 'package:front_end/src/fasta/scanner/string_scanner.dart'; | 18 import 'package:front_end/src/fasta/scanner/string_scanner.dart'; |
| 20 import 'package:front_end/src/fasta/scanner/token.dart' as fasta; | 19 import 'package:front_end/src/fasta/scanner/token.dart' as fasta; |
| 21 import 'package:test/test.dart'; | 20 import 'package:test/test.dart'; |
| 22 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 21 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 23 | 22 |
| 24 import 'parser_fasta_listener.dart'; | 23 import 'parser_fasta_listener.dart'; |
| 25 import 'parser_test.dart'; | 24 import 'parser_test.dart'; |
| 26 import 'test_support.dart'; | 25 import 'test_support.dart'; |
| 27 | 26 |
| 28 main() { | 27 main() { |
| (...skipping 922 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 951 } | 950 } |
| 952 | 951 |
| 953 @override | 952 @override |
| 954 @failingTest | 953 @failingTest |
| 955 void test_parsePartOfDirective_uri() { | 954 void test_parsePartOfDirective_uri() { |
| 956 // TODO(paulberry,ahe): URIs in "part of" declarations are not supported by | 955 // TODO(paulberry,ahe): URIs in "part of" declarations are not supported by |
| 957 // Fasta. | 956 // Fasta. |
| 958 super.test_parsePartOfDirective_uri(); | 957 super.test_parsePartOfDirective_uri(); |
| 959 } | 958 } |
| 960 } | 959 } |
| OLD | NEW |