| 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. | 
|  |