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

Unified Diff: lib/src/property.dart

Issue 1832993003: Fix all strong mode errors and warnings. (Closed) Base URL: https://github.com/dart-lang/csslib.git@master
Patch Set: Created 4 years, 9 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: lib/src/property.dart
diff --git a/lib/src/property.dart b/lib/src/property.dart
index c2cf776af4df944f7046d21851b477935132fc4a..b4beaee8db92d0128010e97eac9db2c499c471ea 100644
--- a/lib/src/property.dart
+++ b/lib/src/property.dart
@@ -1232,4 +1232,4 @@ class BoxEdge {
num get height => (top != null ? top : 0) + (bottom != null ? bottom : 0);
}
-_mergeVal(x, y) => y != null ? y : x;
+/*=T*/ _mergeVal/*<T>*/(/*=T*/ x, /*=T*/ y) => y != null ? y : x;
terry 2016/04/14 21:16:43 grep/regex ?
Bob Nystrom 2016/04/21 00:06:59 Heh, nope. This is the actual current comment-base

Powered by Google App Engine
This is Rietveld 408576698