File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -404,14 +404,18 @@ List<List<List<ComplexSelectorComponent>>>? _mergeFinalCombinators(
404
404
result.addFirst ([
405
405
[compound2, combinator2]
406
406
]);
407
- components1..add (compound1)..add (Combinator .child);
407
+ components1
408
+ ..add (compound1)
409
+ ..add (Combinator .child);
408
410
} else if (combinator2 == Combinator .child &&
409
411
(combinator1 == Combinator .nextSibling ||
410
412
combinator1 == Combinator .followingSibling)) {
411
413
result.addFirst ([
412
414
[compound1, combinator1]
413
415
]);
414
- components2..add (compound2)..add (Combinator .child);
416
+ components2
417
+ ..add (compound2)
418
+ ..add (Combinator .child);
415
419
} else if (combinator1 == combinator2) {
416
420
var unified = unifyCompound (compound1.components, compound2.components);
417
421
if (unified == null ) return null ;
Original file line number Diff line number Diff line change @@ -439,6 +439,7 @@ class _EvaluateVisitor
439
439
}
440
440
441
441
var callable = function.assertFunction ("function" ).callable;
442
+ // ignore: unnecessary_type_check
442
443
if (callable is AsyncCallable ) {
443
444
return await _runFunctionCallable (
444
445
invocation, callable, _callableNode! );
Original file line number Diff line number Diff line change 5
5
// DO NOT EDIT. This file was generated from async_evaluate.dart.
6
6
// See tool/grind/synchronize.dart for details.
7
7
//
8
- // Checksum: 37fd148527c89ecfa79b51500b589b27a83f542e
8
+ // Checksum: 2d9c3bb53fc29472f7fbc68d9a3f5b8464f95bc5
9
9
//
10
10
// ignore_for_file: unused_import
11
11
@@ -446,6 +446,7 @@ class _EvaluateVisitor
446
446
}
447
447
448
448
var callable = function.assertFunction ("function" ).callable;
449
+ // ignore: unnecessary_type_check
449
450
if (callable is Callable ) {
450
451
return _runFunctionCallable (invocation, callable, _callableNode! );
451
452
} else {
You can’t perform that action at this time.
0 commit comments