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

Unified Diff: packages/csslib/lib/src/property.dart

Issue 3015713002: Roll to pickup pool changes
Patch Set: Created 3 years, 3 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 | « packages/csslib/lib/src/options.dart ('k') | packages/csslib/lib/src/tree.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/csslib/lib/src/property.dart
diff --git a/packages/csslib/lib/src/property.dart b/packages/csslib/lib/src/property.dart
index a2cf97ca1e619116c478308b1336e9539cd9e6d6..69f5c5425d1e5a1a3e3301e5929275db7bf536e2 100644
--- a/packages/csslib/lib/src/property.dart
+++ b/packages/csslib/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 | « packages/csslib/lib/src/options.dart ('k') | packages/csslib/lib/src/tree.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698