| 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/generated/parser.dart' as analyzer; | 9 import 'package:analyzer/src/generated/parser.dart' as analyzer; |
| 10 import 'package:analyzer/src/generated/utilities_dart.dart'; | 10 import 'package:analyzer/src/generated/utilities_dart.dart'; |
| (...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 @override | 429 @override |
| 430 @failingTest | 430 @failingTest |
| 431 void | 431 void |
| 432 test_parseAssignableExpression_identifier_args_dot_typeParameterComments()
{ | 432 test_parseAssignableExpression_identifier_args_dot_typeParameterComments()
{ |
| 433 super | 433 super |
| 434 .test_parseAssignableExpression_identifier_args_dot_typeParameterComment
s(); | 434 .test_parseAssignableExpression_identifier_args_dot_typeParameterComment
s(); |
| 435 } | 435 } |
| 436 | 436 |
| 437 @override | 437 @override |
| 438 @failingTest | 438 @failingTest |
| 439 void test_parseAssignableExpression_identifier_dot() { |
| 440 super.test_parseAssignableExpression_identifier_dot(); |
| 441 } |
| 442 |
| 443 @override |
| 444 @failingTest |
| 439 void test_parseAssignableExpression_identifier_question_dot() { | 445 void test_parseAssignableExpression_identifier_question_dot() { |
| 440 super.test_parseAssignableExpression_identifier_question_dot(); | 446 super.test_parseAssignableExpression_identifier_question_dot(); |
| 441 } | 447 } |
| 442 | 448 |
| 443 @override | 449 @override |
| 444 @failingTest | 450 @failingTest |
| 445 void test_parseAssignableSelector_dot() { | 451 void test_parseAssignableSelector_dot() { |
| 446 super.test_parseAssignableSelector_dot(); | 452 super.test_parseAssignableSelector_dot(); |
| 447 } | 453 } |
| 448 | 454 |
| (...skipping 1425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1874 void test_parseTypeAlias_genericFunction_typeParameters_voidReturnType() { | 1880 void test_parseTypeAlias_genericFunction_typeParameters_voidReturnType() { |
| 1875 super.test_parseTypeAlias_genericFunction_typeParameters_voidReturnType(); | 1881 super.test_parseTypeAlias_genericFunction_typeParameters_voidReturnType(); |
| 1876 } | 1882 } |
| 1877 | 1883 |
| 1878 @override | 1884 @override |
| 1879 @failingTest | 1885 @failingTest |
| 1880 void test_parseTypeAlias_genericFunction_voidReturnType() { | 1886 void test_parseTypeAlias_genericFunction_voidReturnType() { |
| 1881 super.test_parseTypeAlias_genericFunction_voidReturnType(); | 1887 super.test_parseTypeAlias_genericFunction_voidReturnType(); |
| 1882 } | 1888 } |
| 1883 } | 1889 } |
| OLD | NEW |