Skip to content

Commit

Permalink
fixup! See #290 - removes aggressive merging.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubpawlowicz committed Jan 18, 2017
1 parent aa17ed0 commit 5be24e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/optimizer/level-2/reduce-non-adjacent.js
Expand Up @@ -148,7 +148,7 @@ function reduceSelector(tokens, selector, data, context, options, outerContext)
var bodiesAsList = [];
var processedTokens = [];

for (var j = data.length - 1, m = 0; j >= 0; j--) {
for (var j = data.length - 1; j >= 0; j--) {
if (context.filterOut(j, bodies))
continue;

Expand Down

0 comments on commit 5be24e6

Please sign in to comment.