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

Unified Diff: packages/dart_style/test/splitting/type_parameters.unit

Issue 2990843002: Removed fixed dependencies (Closed)
Patch Set: Created 3 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: packages/dart_style/test/splitting/type_parameters.unit
diff --git a/packages/dart_style/test/splitting/type_parameters.unit b/packages/dart_style/test/splitting/type_parameters.unit
index 088f045d336c6a4f0e86b9e231ac612344e756eb..920cb38cec513808544b71ce6b9d488b9c7b1f14 100644
--- a/packages/dart_style/test/splitting/type_parameters.unit
+++ b/packages/dart_style/test/splitting/type_parameters.unit
@@ -34,4 +34,16 @@ class SomeClass<
TypeArgument> extends Base {}
<<<
class SomeClass<TypeArgument>
- extends Base {}
+ extends Base {}
+>>> generic function declaration
+foo<A,B,C,D>() {}
+<<<
+foo<A, B, C, D>() {}
+>>> generic method on class
+class Foo {
+ foo<A,B,C,D>() {}
+}
+<<<
+class Foo {
+ foo<A, B, C, D>() {}
+}
« no previous file with comments | « packages/dart_style/test/splitting/type_arguments.stmt ('k') | packages/dart_style/test/splitting/variables.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698