Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(169)

Side by Side Diff: pkg/analyzer/test/generated/parser_fasta_test.dart

Issue 2730293003: Fix for parsing 'rethrow' statement with Fasta. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
548 } 548 }
549 549
550 @override 550 @override
551 @failingTest 551 @failingTest
552 void test_parseRelationalExpression_is_nullable() { 552 void test_parseRelationalExpression_is_nullable() {
553 super.test_parseRelationalExpression_is_nullable(); 553 super.test_parseRelationalExpression_is_nullable();
554 } 554 }
555 555
556 @override 556 @override
557 @failingTest 557 @failingTest
558 void test_parseRethrowExpression() {
559 super.test_parseRethrowExpression();
560 }
561
562 @override
563 @failingTest
564 void test_parseSuperConstructorInvocation_named() { 558 void test_parseSuperConstructorInvocation_named() {
565 super.test_parseSuperConstructorInvocation_named(); 559 super.test_parseSuperConstructorInvocation_named();
566 } 560 }
567 561
568 @override 562 @override
569 @failingTest 563 @failingTest
570 void test_parseSuperConstructorInvocation_unnamed() { 564 void test_parseSuperConstructorInvocation_unnamed() {
571 super.test_parseSuperConstructorInvocation_unnamed(); 565 super.test_parseSuperConstructorInvocation_unnamed();
572 } 566 }
573 567
(...skipping 874 matching lines...) Expand 10 before | Expand all | Expand 10 after
1448 void test_parseTypeAlias_genericFunction_typeParameters_voidReturnType() { 1442 void test_parseTypeAlias_genericFunction_typeParameters_voidReturnType() {
1449 super.test_parseTypeAlias_genericFunction_typeParameters_voidReturnType(); 1443 super.test_parseTypeAlias_genericFunction_typeParameters_voidReturnType();
1450 } 1444 }
1451 1445
1452 @override 1446 @override
1453 @failingTest 1447 @failingTest
1454 void test_parseTypeAlias_genericFunction_voidReturnType() { 1448 void test_parseTypeAlias_genericFunction_voidReturnType() {
1455 super.test_parseTypeAlias_genericFunction_voidReturnType(); 1449 super.test_parseTypeAlias_genericFunction_voidReturnType();
1456 } 1450 }
1457 } 1451 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698