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

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

Issue 2709623004: Add AstBuilder support for DottedName and ConditionalUri. (Closed)
Patch Set: Reformat Created 3 years, 10 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/element/element.dart'; 6 import 'package:analyzer/dart/element/element.dart';
7 import 'package:analyzer/error/error.dart'; 7 import 'package:analyzer/error/error.dart';
8 import 'package:analyzer/src/generated/parser.dart' as analyzer; 8 import 'package:analyzer/src/generated/parser.dart' as analyzer;
9 import 'package:front_end/src/fasta/analyzer/ast_builder.dart'; 9 import 'package:front_end/src/fasta/analyzer/ast_builder.dart';
10 import 'package:front_end/src/fasta/analyzer/element_store.dart'; 10 import 'package:front_end/src/fasta/analyzer/element_store.dart';
(...skipping 685 matching lines...) Expand 10 before | Expand all | Expand 10 after
696 696
697 @override 697 @override
698 @failingTest 698 @failingTest
699 void test_parseEnumDeclaration_two() { 699 void test_parseEnumDeclaration_two() {
700 // TODO(paulberry): Unhandled event: Enum 700 // TODO(paulberry): Unhandled event: Enum
701 super.test_parseEnumDeclaration_two(); 701 super.test_parseEnumDeclaration_two();
702 } 702 }
703 703
704 @override 704 @override
705 @failingTest 705 @failingTest
706 void test_parseExportDirective_configuration_multiple() {
707 // TODO(paulberry): Implement endConditionalUri
708 super.test_parseExportDirective_configuration_multiple();
709 }
710
711 @override
712 @failingTest
713 void test_parseExportDirective_configuration_single() {
714 // TODO(paulberry): Implement endConditionalUri
715 super.test_parseExportDirective_configuration_single();
716 }
717
718 @override
719 @failingTest
720 void test_parseFunctionDeclaration_function() { 706 void test_parseFunctionDeclaration_function() {
721 // TODO(paulberry): handle doc comments 707 // TODO(paulberry): handle doc comments
722 super.test_parseFunctionDeclaration_function(); 708 super.test_parseFunctionDeclaration_function();
723 } 709 }
724 710
725 @override 711 @override
726 @failingTest 712 @failingTest
727 void test_parseFunctionDeclaration_functionWithTypeParameters() { 713 void test_parseFunctionDeclaration_functionWithTypeParameters() {
728 // TODO(paulberry): handle doc comments 714 // TODO(paulberry): handle doc comments
729 super.test_parseFunctionDeclaration_functionWithTypeParameters(); 715 super.test_parseFunctionDeclaration_functionWithTypeParameters();
(...skipping 16 matching lines...) Expand all
746 732
747 @override 733 @override
748 @failingTest 734 @failingTest
749 void test_parseFunctionDeclaration_setter() { 735 void test_parseFunctionDeclaration_setter() {
750 // TODO(paulberry): handle doc comments 736 // TODO(paulberry): handle doc comments
751 super.test_parseFunctionDeclaration_setter(); 737 super.test_parseFunctionDeclaration_setter();
752 } 738 }
753 739
754 @override 740 @override
755 @failingTest 741 @failingTest
756 void test_parseImportDirective_configuration_multiple() {
757 // TODO(paulberry): Implement endConditionalUri
758 super.test_parseImportDirective_configuration_multiple();
759 }
760
761 @override
762 @failingTest
763 void test_parseImportDirective_configuration_single() {
764 // TODO(paulberry): Implement endConditionalUri
765 super.test_parseImportDirective_configuration_single();
766 }
767
768 @override
769 @failingTest
770 void test_parsePartOfDirective_name() { 742 void test_parsePartOfDirective_name() {
771 // TODO(paulberry,ahe): Thes test verifies that even if URIs in "part of" 743 // TODO(paulberry,ahe): Thes test verifies that even if URIs in "part of"
772 // declarations are enabled, a construct of the form "part of identifier;" 744 // declarations are enabled, a construct of the form "part of identifier;"
773 // is still properly handled. URIs in "part of" declarations are not 745 // is still properly handled. URIs in "part of" declarations are not
774 // supported by Fasta yet. 746 // supported by Fasta yet.
775 super.test_parsePartOfDirective_name(); 747 super.test_parsePartOfDirective_name();
776 } 748 }
777 749
778 @override 750 @override
779 @failingTest 751 @failingTest
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
857 void test_parseTypeAlias_genericFunction_typeParameters_voidReturnType() { 829 void test_parseTypeAlias_genericFunction_typeParameters_voidReturnType() {
858 super.test_parseTypeAlias_genericFunction_typeParameters_voidReturnType(); 830 super.test_parseTypeAlias_genericFunction_typeParameters_voidReturnType();
859 } 831 }
860 832
861 @override 833 @override
862 @failingTest 834 @failingTest
863 void test_parseTypeAlias_genericFunction_voidReturnType() { 835 void test_parseTypeAlias_genericFunction_voidReturnType() {
864 super.test_parseTypeAlias_genericFunction_voidReturnType(); 836 super.test_parseTypeAlias_genericFunction_voidReturnType();
865 } 837 }
866 } 838 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698