| 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'; |
| (...skipping 889 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 900 } | 900 } |
| 901 | 901 |
| 902 @override | 902 @override |
| 903 @failingTest | 903 @failingTest |
| 904 void test_parseContinueStatement_noLabel() { | 904 void test_parseContinueStatement_noLabel() { |
| 905 super.test_parseContinueStatement_noLabel(); | 905 super.test_parseContinueStatement_noLabel(); |
| 906 } | 906 } |
| 907 | 907 |
| 908 @override | 908 @override |
| 909 @failingTest | 909 @failingTest |
| 910 void test_parseForStatement_each_noType_metadata() { | |
| 911 super.test_parseForStatement_each_noType_metadata(); | |
| 912 } | |
| 913 | |
| 914 @override | |
| 915 @failingTest | |
| 916 void test_parseForStatement_loop_i_withMetadata() { | |
| 917 super.test_parseForStatement_loop_i_withMetadata(); | |
| 918 } | |
| 919 | |
| 920 @override | |
| 921 @failingTest | |
| 922 void test_parseFunctionDeclarationStatement_typeParameterComments() { | 910 void test_parseFunctionDeclarationStatement_typeParameterComments() { |
| 923 // TODO(scheglov): Fasta doesn't support generic comment syntax. | 911 // TODO(scheglov): Fasta doesn't support generic comment syntax. |
| 924 super.test_parseFunctionDeclarationStatement_typeParameterComments(); | 912 super.test_parseFunctionDeclarationStatement_typeParameterComments(); |
| 925 } | 913 } |
| 926 | 914 |
| 927 @override | 915 @override |
| 928 @failingTest | 916 @failingTest |
| 929 void test_parseStatement_emptyTypeArgumentList() { | 917 void test_parseStatement_emptyTypeArgumentList() { |
| 930 super.test_parseStatement_emptyTypeArgumentList(); | 918 super.test_parseStatement_emptyTypeArgumentList(); |
| 931 } | 919 } |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1043 } | 1031 } |
| 1044 | 1032 |
| 1045 @override | 1033 @override |
| 1046 @failingTest | 1034 @failingTest |
| 1047 void test_parsePartOfDirective_uri() { | 1035 void test_parsePartOfDirective_uri() { |
| 1048 // TODO(paulberry,ahe): URIs in "part of" declarations are not supported by | 1036 // TODO(paulberry,ahe): URIs in "part of" declarations are not supported by |
| 1049 // Fasta. | 1037 // Fasta. |
| 1050 super.test_parsePartOfDirective_uri(); | 1038 super.test_parsePartOfDirective_uri(); |
| 1051 } | 1039 } |
| 1052 } | 1040 } |
| OLD | NEW |