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

Unified Diff: lib/src/property.dart

Issue 2985973002: Update the comment based generic syntax usage (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
« no previous file with comments | « no previous file | pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/property.dart
diff --git a/lib/src/property.dart b/lib/src/property.dart
index a2cf97ca1e619116c478308b1336e9539cd9e6d6..69f5c5425d1e5a1a3e3301e5929275db7bf536e2 100644
--- a/lib/src/property.dart
+++ b/lib/src/property.dart
@@ -1245,4 +1245,4 @@ class BoxEdge {
num get height => (top != null ? top : 0) + (bottom != null ? bottom : 0);
}
-/*=T*/ _mergeVal/*<T>*/(/*=T*/ x, /*=T*/ y) => y != null ? y : x;
+T _mergeVal<T>(T x, T y) => y != null ? y : x;
« no previous file with comments | « no previous file | pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698