| 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 1053 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1064 } | 1064 } |
| 1065 | 1065 |
| 1066 @override | 1066 @override |
| 1067 @failingTest | 1067 @failingTest |
| 1068 void test_parsePrimaryExpression_new() { | 1068 void test_parsePrimaryExpression_new() { |
| 1069 super.test_parsePrimaryExpression_new(); | 1069 super.test_parsePrimaryExpression_new(); |
| 1070 } | 1070 } |
| 1071 | 1071 |
| 1072 @override | 1072 @override |
| 1073 @failingTest | 1073 @failingTest |
| 1074 void test_parsePrimaryExpression_parenthesized() { | |
| 1075 super.test_parsePrimaryExpression_parenthesized(); | |
| 1076 } | |
| 1077 | |
| 1078 @override | |
| 1079 @failingTest | |
| 1080 void test_parseRelationalExpression_as_functionType_noReturnType() { | 1074 void test_parseRelationalExpression_as_functionType_noReturnType() { |
| 1081 super.test_parseRelationalExpression_as_functionType_noReturnType(); | 1075 super.test_parseRelationalExpression_as_functionType_noReturnType(); |
| 1082 } | 1076 } |
| 1083 | 1077 |
| 1084 @override | 1078 @override |
| 1085 @failingTest | 1079 @failingTest |
| 1086 void test_parseRelationalExpression_as_functionType_returnType() { | 1080 void test_parseRelationalExpression_as_functionType_returnType() { |
| 1087 super.test_parseRelationalExpression_as_functionType_returnType(); | 1081 super.test_parseRelationalExpression_as_functionType_returnType(); |
| 1088 } | 1082 } |
| 1089 | 1083 |
| (...skipping 930 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2020 void test_parseTypeAlias_genericFunction_typeParameters_voidReturnType() { | 2014 void test_parseTypeAlias_genericFunction_typeParameters_voidReturnType() { |
| 2021 super.test_parseTypeAlias_genericFunction_typeParameters_voidReturnType(); | 2015 super.test_parseTypeAlias_genericFunction_typeParameters_voidReturnType(); |
| 2022 } | 2016 } |
| 2023 | 2017 |
| 2024 @override | 2018 @override |
| 2025 @failingTest | 2019 @failingTest |
| 2026 void test_parseTypeAlias_genericFunction_voidReturnType() { | 2020 void test_parseTypeAlias_genericFunction_voidReturnType() { |
| 2027 super.test_parseTypeAlias_genericFunction_voidReturnType(); | 2021 super.test_parseTypeAlias_genericFunction_voidReturnType(); |
| 2028 } | 2022 } |
| 2029 } | 2023 } |
| OLD | NEW |