File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -166,6 +166,7 @@ namespace Sass {
166
166
// process all tails
167
167
while (true )
168
168
{
169
+ #ifdef DEBUG
169
170
// skip empty ancestor first
170
171
if (l && l->is_empty_ancestor ())
171
172
{
@@ -182,6 +183,7 @@ namespace Sass {
182
183
if (r) r_h = r->head ();
183
184
continue ;
184
185
}
186
+ #endif
185
187
// check for valid selectors
186
188
if (!l) return !!r;
187
189
if (!r) return false ;
@@ -234,6 +236,7 @@ namespace Sass {
234
236
// process all tails
235
237
while (true )
236
238
{
239
+ #ifdef DEBUG
237
240
// skip empty ancestor first
238
241
if (l && l->is_empty_ancestor ())
239
242
{
@@ -250,6 +253,7 @@ namespace Sass {
250
253
if (r) r_h = r->head ();
251
254
continue ;
252
255
}
256
+ #endif
253
257
// check the pointers
254
258
if (!r) return !l;
255
259
if (!l) return !r;
You can’t perform that action at this time.
0 commit comments