| 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/dart/element/element.dart'; | 7 import 'package:analyzer/dart/element/element.dart'; |
| 8 import 'package:analyzer/error/error.dart'; | 8 import 'package:analyzer/error/error.dart'; |
| 9 import 'package:analyzer/src/fasta/ast_builder.dart'; | 9 import 'package:analyzer/src/fasta/ast_builder.dart'; |
| 10 import 'package:analyzer/src/fasta/element_store.dart'; | 10 import 'package:analyzer/src/fasta/element_store.dart'; |
| 11 import 'package:analyzer/src/generated/parser.dart' as analyzer; | 11 import 'package:analyzer/src/generated/parser.dart' as analyzer; |
| 12 import 'package:analyzer/src/generated/utilities_dart.dart'; | 12 import 'package:analyzer/src/generated/utilities_dart.dart'; |
| 13 import 'package:front_end/src/fasta/builder/scope.dart'; | |
| 14 import 'package:front_end/src/fasta/kernel/kernel_builder.dart'; | 13 import 'package:front_end/src/fasta/kernel/kernel_builder.dart'; |
| 15 import 'package:front_end/src/fasta/kernel/kernel_library_builder.dart'; | 14 import 'package:front_end/src/fasta/kernel/kernel_library_builder.dart'; |
| 16 import 'package:front_end/src/fasta/parser/identifier_context.dart' | 15 import 'package:front_end/src/fasta/parser/identifier_context.dart' |
| 17 show IdentifierContext; | 16 show IdentifierContext; |
| 18 import 'package:front_end/src/fasta/parser/parser.dart' as fasta; | 17 import 'package:front_end/src/fasta/parser/parser.dart' as fasta; |
| 19 import 'package:front_end/src/fasta/scanner/precedence.dart' as fasta; | 18 import 'package:front_end/src/fasta/scanner/precedence.dart' as fasta; |
| 20 import 'package:front_end/src/fasta/scanner/string_scanner.dart'; | 19 import 'package:front_end/src/fasta/scanner/string_scanner.dart'; |
| 21 import 'package:front_end/src/fasta/scanner/token.dart' as fasta; | 20 import 'package:front_end/src/fasta/scanner/token.dart' as fasta; |
| 22 import 'package:test/test.dart'; | 21 import 'package:test/test.dart'; |
| 23 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 22 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| (...skipping 1172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1196 } | 1195 } |
| 1197 | 1196 |
| 1198 @override | 1197 @override |
| 1199 @failingTest | 1198 @failingTest |
| 1200 void test_parsePartOfDirective_uri() { | 1199 void test_parsePartOfDirective_uri() { |
| 1201 // TODO(paulberry,ahe): URIs in "part of" declarations are not supported by | 1200 // TODO(paulberry,ahe): URIs in "part of" declarations are not supported by |
| 1202 // Fasta. | 1201 // Fasta. |
| 1203 super.test_parsePartOfDirective_uri(); | 1202 super.test_parsePartOfDirective_uri(); |
| 1204 } | 1203 } |
| 1205 } | 1204 } |
| OLD | NEW |