| 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 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 662 } | 662 } |
| 663 | 663 |
| 664 @override | 664 @override |
| 665 @failingTest | 665 @failingTest |
| 666 void test_parseSuperConstructorInvocation_unnamed() { | 666 void test_parseSuperConstructorInvocation_unnamed() { |
| 667 super.test_parseSuperConstructorInvocation_unnamed(); | 667 super.test_parseSuperConstructorInvocation_unnamed(); |
| 668 } | 668 } |
| 669 | 669 |
| 670 @override | 670 @override |
| 671 @failingTest | 671 @failingTest |
| 672 void test_parseSymbolLiteral_operator() { | |
| 673 super.test_parseSymbolLiteral_operator(); | |
| 674 } | |
| 675 | |
| 676 @override | |
| 677 @failingTest | |
| 678 void test_parseSymbolLiteral_void() { | 672 void test_parseSymbolLiteral_void() { |
| 679 super.test_parseSymbolLiteral_void(); | 673 super.test_parseSymbolLiteral_void(); |
| 680 } | 674 } |
| 681 | 675 |
| 682 @override | 676 @override |
| 683 @failingTest | 677 @failingTest |
| 684 void test_parseUnaryExpression_decrement_super() { | 678 void test_parseUnaryExpression_decrement_super() { |
| 685 super.test_parseUnaryExpression_decrement_super(); | 679 super.test_parseUnaryExpression_decrement_super(); |
| 686 } | 680 } |
| 687 | 681 |
| (...skipping 860 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1548 void test_parseTypeAlias_genericFunction_typeParameters_voidReturnType() { | 1542 void test_parseTypeAlias_genericFunction_typeParameters_voidReturnType() { |
| 1549 super.test_parseTypeAlias_genericFunction_typeParameters_voidReturnType(); | 1543 super.test_parseTypeAlias_genericFunction_typeParameters_voidReturnType(); |
| 1550 } | 1544 } |
| 1551 | 1545 |
| 1552 @override | 1546 @override |
| 1553 @failingTest | 1547 @failingTest |
| 1554 void test_parseTypeAlias_genericFunction_voidReturnType() { | 1548 void test_parseTypeAlias_genericFunction_voidReturnType() { |
| 1555 super.test_parseTypeAlias_genericFunction_voidReturnType(); | 1549 super.test_parseTypeAlias_genericFunction_voidReturnType(); |
| 1556 } | 1550 } |
| 1557 } | 1551 } |
| OLD | NEW |