| 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 603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 614 } | 614 } |
| 615 | 615 |
| 616 @override | 616 @override |
| 617 @failingTest | 617 @failingTest |
| 618 void test_parseSuperConstructorInvocation_unnamed() { | 618 void test_parseSuperConstructorInvocation_unnamed() { |
| 619 super.test_parseSuperConstructorInvocation_unnamed(); | 619 super.test_parseSuperConstructorInvocation_unnamed(); |
| 620 } | 620 } |
| 621 | 621 |
| 622 @override | 622 @override |
| 623 @failingTest | 623 @failingTest |
| 624 void test_parseSymbolLiteral_void() { | |
| 625 super.test_parseSymbolLiteral_void(); | |
| 626 } | |
| 627 | |
| 628 @override | |
| 629 @failingTest | |
| 630 void test_parseUnaryExpression_decrement_super() { | 624 void test_parseUnaryExpression_decrement_super() { |
| 631 super.test_parseUnaryExpression_decrement_super(); | 625 super.test_parseUnaryExpression_decrement_super(); |
| 632 } | 626 } |
| 633 | 627 |
| 634 @override | 628 @override |
| 635 @failingTest | 629 @failingTest |
| 636 void test_parseUnaryExpression_decrement_super_withComment() { | 630 void test_parseUnaryExpression_decrement_super_withComment() { |
| 637 super.test_parseUnaryExpression_decrement_super_withComment(); | 631 super.test_parseUnaryExpression_decrement_super_withComment(); |
| 638 } | 632 } |
| 639 } | 633 } |
| (...skipping 860 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1500 void test_parseTypeAlias_genericFunction_typeParameters_voidReturnType() { | 1494 void test_parseTypeAlias_genericFunction_typeParameters_voidReturnType() { |
| 1501 super.test_parseTypeAlias_genericFunction_typeParameters_voidReturnType(); | 1495 super.test_parseTypeAlias_genericFunction_typeParameters_voidReturnType(); |
| 1502 } | 1496 } |
| 1503 | 1497 |
| 1504 @override | 1498 @override |
| 1505 @failingTest | 1499 @failingTest |
| 1506 void test_parseTypeAlias_genericFunction_voidReturnType() { | 1500 void test_parseTypeAlias_genericFunction_voidReturnType() { |
| 1507 super.test_parseTypeAlias_genericFunction_voidReturnType(); | 1501 super.test_parseTypeAlias_genericFunction_voidReturnType(); |
| 1508 } | 1502 } |
| 1509 } | 1503 } |
| OLD | NEW |