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

Unified Diff: lib/src/nesting.dart

Issue 1182953003: Eat some dogfood! (Closed) Base URL: https://github.com/dart-lang/dart_style.git@master
Patch Set: Created 5 years, 6 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/nesting.dart
diff --git a/lib/src/nesting.dart b/lib/src/nesting.dart
index 67f08dcb0922a6b72233b15ebad6a1670ae0f6e9..9a9853ba12cf6ca10f86048c9563e2eb984a4b84 100644
--- a/lib/src/nesting.dart
+++ b/lib/src/nesting.dart
@@ -257,7 +257,8 @@ class NestingSplitter {
for (var i = lastLengthStart; i < lastLengthEnd; i++) {
var previousSubset = subsets[i];
- var start = previousSubset.isNotEmpty ? previousSubset.last + 1 : min + 1;
+ var start =
+ previousSubset.isNotEmpty ? previousSubset.last + 1 : min + 1;
// Then for each value in the remainer, make a new subset that is the
// union of the shorter subset and that value.

Powered by Google App Engine
This is Rietveld 408576698