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

Unified Diff: pkg/analyzer/test/generated/incremental_resolver_test.dart

Issue 745513003: Match enums, class type alias, type parameters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: pkg/analyzer/test/generated/incremental_resolver_test.dart
diff --git a/pkg/analyzer/test/generated/incremental_resolver_test.dart b/pkg/analyzer/test/generated/incremental_resolver_test.dart
index c748bc0da7e40f89c64758413c40d9d8fee707d2..3701dd8c01eaf57486420dcf49ac81df760fc153 100644
--- a/pkg/analyzer/test/generated/incremental_resolver_test.dart
+++ b/pkg/analyzer/test/generated/incremental_resolver_test.dart
@@ -74,6 +74,80 @@ class B {}
''');
}
+ void test_false_class_typeParameters_bounds_add() {
+ _assertCompilationUnitMatches(false, r'''
+class A {}
+class B<T> {
+ T f;
+}
+''', r'''
+class A {}
+class B<T extends A> {
+ T f;
+}
+''');
+ }
+
+ void test_false_class_typeParameters_bounds_remove() {
+ _assertCompilationUnitMatches(false, r'''
+class A {}
+class B<T extends A> {
+ T f;
+}
+''', r'''
+class A {}
+class B<T> {
+ T f;
+}
+''');
+ }
+
+ void test_false_classTypeAlias_list_add() {
+ _assertCompilationUnitMatches(false, r'''
+class M {}
+class A = Object with M;
+''', r'''
+class M {}
+class A = Object with M;
+class B = Object with M;
+''');
+ }
+
+ void test_false_classTypeAlias_list_remove() {
+ _assertCompilationUnitMatches(false, r'''
+class M {}
+class A = Object with M;
+class B = Object with M;
+''', r'''
+class M {}
+class A = Object with M;
+''');
+ }
+
+ void test_false_classTypeAlias_typeParameters_bounds_add() {
+ _assertCompilationUnitMatches(false, r'''
+class M<T> {}
+class A {}
+class B<T> = Object with M<T>;
+''', r'''
+class M<T> {}
+class A {}
+class B<T extends A> = Object with M<T>;
+''');
+ }
+
+ void test_false_classTypeAlias_typeParameters_bounds_remove() {
+ _assertCompilationUnitMatches(false, r'''
+class M<T> {}
+class A {}
+class B<T extends A> = Object with M<T>;
+''', r'''
+class M<T> {}
+class A {}
+class B<T> = Object with M<T>;
+''');
+ }
+
void test_false_constructor_parameters_list_add() {
_assertCompilationUnitMatches(false, r'''
class A {
@@ -132,6 +206,24 @@ class A {
''');
}
+ void test_false_enum_constants_add() {
+ resetWithEnum();
+ _assertCompilationUnitMatches(false, r'''
+enum E {A, B}
+''', r'''
+enum E {A, B, C}
+''');
+ }
+
+ void test_false_enum_constants_remove() {
+ resetWithEnum();
+ _assertCompilationUnitMatches(false, r'''
+enum E {A, B, C}
+''', r'''
+enum E {A, B}
+''');
+ }
+
void test_false_extendsClause_add() {
_assertCompilationUnitMatches(false, r'''
class A {}
@@ -464,6 +556,46 @@ class A<T> {}
''');
}
+ void test_true_classTypeAlias_list_reorder() {
+ _assertCompilationUnitMatches(true, r'''
+class M {}
+class A = Object with M;
+class B = Object with M;
+class C = Object with M;
+''', r'''
+class M {}
+class C = Object with M;
+class A = Object with M;
+class B = Object with M;
+''');
+ }
+
+ void test_true_classTypeAlias_list_same() {
+ _assertCompilationUnitMatches(true, r'''
+class M {}
+class A = Object with M;
+class B = Object with M;
+class C = Object with M;
+''', r'''
+class M {}
+class A = Object with M;
+class B = Object with M;
+class C = Object with M;
+''');
+ }
+
+ void test_true_classTypeAlias_typeParameters_same() {
+ _assertCompilationUnitMatches(true, r'''
+class M<T> {}
+class A<T> {}
+class B<T> = A<T> with M<T>;
+''', r'''
+class M<T> {}
+class A<T> {}
+class B<T> = A<T> with M<T>;
+''');
+ }
+
void test_true_constructor_named_same() {
_assertCompilationUnitMatches(true, r'''
class A {
@@ -510,6 +642,41 @@ class A {
''');
}
+ void test_true_enum_constants_reorder() {
+ resetWithEnum();
+ _assertCompilationUnitMatches(true, r'''
+enum E {A, B, C}
+''', r'''
+enum E {C, A, B}
+''');
+ }
+
+ void test_true_enum_list_reorder() {
+ resetWithEnum();
+ _assertCompilationUnitMatches(true, r'''
+enum A {A1, A2, A3}
+enum B {B1, B2, B3}
+enum C {C1, C2, C3}
+''', r'''
+enum C {C1, C2, C3}
+enum A {A1, A2, A3}
+enum B {B1, B2, B3}
+''');
+ }
+
+ void test_true_enum_list_same() {
+ resetWithEnum();
+ _assertCompilationUnitMatches(true, r'''
+enum A {A1, A2, A3}
+enum B {B1, B2, B3}
+enum C {C1, C2, C3}
+''', r'''
+enum A {A1, A2, A3}
+enum B {B1, B2, B3}
+enum C {C1, C2, C3}
+''');
+ }
+
void test_true_executable_same_hasLabel() {
_assertCompilationUnitMatches(true, r'''
main() {

Powered by Google App Engine
This is Rietveld 408576698