@@ -307,6 +307,7 @@ class BitAndOperation extends BinaryBitOperation {
307307 BigInt foldInts (BigInt left, BigInt right) => left & right;
308308
309309 @override
310+ // ignore: avoid_dynamic_calls
310311 apply (left, right) => left & right;
311312}
312313
@@ -320,6 +321,7 @@ class BitOrOperation extends BinaryBitOperation {
320321 BigInt foldInts (BigInt left, BigInt right) => left | right;
321322
322323 @override
324+ // ignore: avoid_dynamic_calls
323325 apply (left, right) => left | right;
324326}
325327
@@ -333,6 +335,7 @@ class BitXorOperation extends BinaryBitOperation {
333335 BigInt foldInts (BigInt left, BigInt right) => left ^ right;
334336
335337 @override
338+ // ignore: avoid_dynamic_calls
336339 apply (left, right) => left ^ right;
337340}
338341
@@ -351,6 +354,7 @@ class ShiftLeftOperation extends BinaryBitOperation {
351354 }
352355
353356 @override
357+ // ignore: avoid_dynamic_calls
354358 apply (left, right) => left << right;
355359}
356360
@@ -384,6 +388,7 @@ class ShiftRightOperation extends BinaryBitOperation {
384388 }
385389
386390 @override
391+ // ignore: avoid_dynamic_calls
387392 apply (left, right) => left >> right;
388393}
389394
@@ -498,6 +503,7 @@ class SubtractOperation extends ArithmeticNumOperation {
498503 num foldNums (num left, num right) => left - right;
499504
500505 @override
506+ // ignore: avoid_dynamic_calls
501507 apply (left, right) => left - right;
502508}
503509
@@ -514,6 +520,7 @@ class MultiplyOperation extends ArithmeticNumOperation {
514520 num foldNums (num left, num right) => left * right;
515521
516522 @override
523+ // ignore: avoid_dynamic_calls
517524 apply (left, right) => left * right;
518525}
519526
@@ -533,6 +540,7 @@ class ModuloOperation extends ArithmeticNumOperation {
533540 num foldNums (num left, num right) => left % right;
534541
535542 @override
543+ // ignore: avoid_dynamic_calls
536544 apply (left, right) => left % right;
537545}
538546
@@ -552,6 +560,7 @@ class RemainderOperation extends ArithmeticNumOperation {
552560 num foldNums (num left, num right) => left.remainder (right);
553561
554562 @override
563+ // ignore: avoid_dynamic_calls
555564 apply (left, right) => left.remainder (right);
556565}
557566
@@ -575,6 +584,7 @@ class TruncatingDivideOperation extends ArithmeticNumOperation {
575584 }
576585
577586 @override
587+ // ignore: avoid_dynamic_calls
578588 apply (left, right) => left ~ / right;
579589
580590 @override
@@ -597,6 +607,7 @@ class DivideOperation extends ArithmeticNumOperation {
597607 bool isDivide () => true ;
598608
599609 @override
610+ // ignore: avoid_dynamic_calls
600611 apply (left, right) => left / right;
601612}
602613
@@ -631,6 +642,7 @@ class AddOperation implements BinaryOperation {
631642 }
632643
633644 @override
645+ // ignore: avoid_dynamic_calls
634646 apply (left, right) => left + right;
635647}
636648
@@ -669,6 +681,7 @@ class LessOperation extends RelationalNumOperation {
669681 bool foldNums (num left, num right) => left < right;
670682
671683 @override
684+ // ignore: avoid_dynamic_calls
672685 apply (left, right) => left < right;
673686}
674687
@@ -685,6 +698,7 @@ class LessEqualOperation extends RelationalNumOperation {
685698 bool foldNums (num left, num right) => left <= right;
686699
687700 @override
701+ // ignore: avoid_dynamic_calls
688702 apply (left, right) => left <= right;
689703}
690704
@@ -701,6 +715,7 @@ class GreaterOperation extends RelationalNumOperation {
701715 bool foldNums (num left, num right) => left > right;
702716
703717 @override
718+ // ignore: avoid_dynamic_calls
704719 apply (left, right) => left > right;
705720}
706721
@@ -717,6 +732,7 @@ class GreaterEqualOperation extends RelationalNumOperation {
717732 bool foldNums (num left, num right) => left >= right;
718733
719734 @override
735+ // ignore: avoid_dynamic_calls
720736 apply (left, right) => left >= right;
721737}
722738
@@ -823,6 +839,7 @@ class CodeUnitAtOperation implements BinaryOperation {
823839 }
824840
825841 @override
842+ // ignore: avoid_dynamic_calls
826843 apply (left, right) => left.codeUnitAt (right);
827844}
828845
0 commit comments