@@ -553,8 +553,8 @@ def test_length_hint():
553553# object.__getitem__(self, key)
554554class With_getitem :
555555 def __getitem__ (self , key ):
556- SINK2 (key )
557- SINK1 (self )
556+ SINK2 (key ) #$ arg2="ControlFlowNode for arg2, l:565 -> ControlFlowNode for key"
557+ SINK1 (self ) #$ arg1="SSA variable with_getitem, l:563 -> ControlFlowNode for self"
558558 OK ()
559559 return ""
560560
@@ -568,9 +568,9 @@ def test_getitem():
568568# object.__setitem__(self, key, value)
569569class With_setitem :
570570 def __setitem__ (self , key , value ):
571- SINK3 (value )
572- SINK2 (key )
573- SINK1 (self )
571+ SINK3 (value ) #$ arg3="ControlFlowNode for arg3, l:581 -> ControlFlowNode for value"
572+ SINK2 (key ) #$ arg2="ControlFlowNode for arg2, l:581 -> ControlFlowNode for key"
573+ SINK1 (self ) #$ arg1="SSA variable with_setitem, l:578 -> ControlFlowNode for self"
574574 OK ()
575575
576576
@@ -584,8 +584,8 @@ def test_setitem():
584584# object.__delitem__(self, key)
585585class With_delitem :
586586 def __delitem__ (self , key ):
587- SINK2 (key )
588- SINK1 (self )
587+ SINK2 (key ) #$ arg2="ControlFlowNode for arg2, l:595 -> ControlFlowNode for key"
588+ SINK1 (self ) #$ arg1="SSA variable with_delitem, l:593 -> ControlFlowNode for self"
589589 OK ()
590590
591591
@@ -655,8 +655,8 @@ def test_contains():
655655# object.__add__(self, other)
656656class With_add :
657657 def __add__ (self , other ):
658- SINK2 (other )
659- SINK1 (self )
658+ SINK2 (other ) #$ arg2="ControlFlowNode for arg2, l:667 -> ControlFlowNode for other"
659+ SINK1 (self ) #$ arg1="SSA variable with_add, l:665 -> ControlFlowNode for self"
660660 OK ()
661661 return self
662662
@@ -670,8 +670,8 @@ def test_add():
670670# object.__sub__(self, other)
671671class With_sub :
672672 def __sub__ (self , other ):
673- SINK2 (other )
674- SINK1 (self )
673+ SINK2 (other ) #$ arg2="ControlFlowNode for arg2, l:682 -> ControlFlowNode for other"
674+ SINK1 (self ) #$ arg1="SSA variable with_sub, l:680 -> ControlFlowNode for self"
675675 OK ()
676676 return self
677677
@@ -685,8 +685,8 @@ def test_sub():
685685# object.__mul__(self, other)
686686class With_mul :
687687 def __mul__ (self , other ):
688- SINK2 (other )
689- SINK1 (self )
688+ SINK2 (other ) #$ arg2="ControlFlowNode for arg2, l:697 -> ControlFlowNode for other"
689+ SINK1 (self ) #$ arg1="SSA variable with_mul, l:695 -> ControlFlowNode for self"
690690 OK ()
691691 return self
692692
@@ -700,8 +700,8 @@ def test_mul():
700700# object.__matmul__(self, other)
701701class With_matmul :
702702 def __matmul__ (self , other ):
703- SINK2 (other )
704- SINK1 (self )
703+ SINK2 (other ) #$ arg2="ControlFlowNode for arg2, l:712 -> ControlFlowNode for other"
704+ SINK1 (self ) #$ arg1="SSA variable with_matmul, l:710 -> ControlFlowNode for self"
705705 OK ()
706706 return self
707707
@@ -715,8 +715,8 @@ def test_matmul():
715715# object.__truediv__(self, other)
716716class With_truediv :
717717 def __truediv__ (self , other ):
718- SINK2 (other )
719- SINK1 (self )
718+ SINK2 (other ) #$ arg2="ControlFlowNode for arg2, l:727 -> ControlFlowNode for other"
719+ SINK1 (self ) #$ arg1="SSA variable with_truediv, l:725 -> ControlFlowNode for self"
720720 OK ()
721721 return self
722722
@@ -730,8 +730,8 @@ def test_truediv():
730730# object.__floordiv__(self, other)
731731class With_floordiv :
732732 def __floordiv__ (self , other ):
733- SINK2 (other )
734- SINK1 (self )
733+ SINK2 (other ) #$ arg2="ControlFlowNode for arg2, l:742 -> ControlFlowNode for other"
734+ SINK1 (self ) #$ arg1="SSA variable with_floordiv, l:740 -> ControlFlowNode for self"
735735 OK ()
736736 return self
737737
@@ -745,8 +745,8 @@ def test_floordiv():
745745# object.__mod__(self, other)
746746class With_mod :
747747 def __mod__ (self , other ):
748- SINK2 (other )
749- SINK1 (self )
748+ SINK2 (other ) #$ arg2="ControlFlowNode for arg2, l:757 -> ControlFlowNode for other"
749+ SINK1 (self ) #$ arg1="SSA variable with_mod, l:755 -> ControlFlowNode for self"
750750 OK ()
751751 return self
752752
@@ -775,8 +775,8 @@ def test_divmod():
775775# object.__pow__(self, other[, modulo])
776776class With_pow :
777777 def __pow__ (self , other ):
778- SINK2 (other )
779- SINK1 (self )
778+ SINK2 (other ) #$ arg2="ControlFlowNode for arg2, l:793 -> ControlFlowNode for other"
779+ SINK1 (self ) #$ arg1="SSA variable with_pow, l:791 -> ControlFlowNode for self"
780780 OK ()
781781 return self
782782
@@ -796,8 +796,8 @@ def test_pow_op():
796796# object.__lshift__(self, other)
797797class With_lshift :
798798 def __lshift__ (self , other ):
799- SINK2 (other )
800- SINK1 (self )
799+ SINK2 (other ) #$ arg2="ControlFlowNode for arg2, l:808 -> ControlFlowNode for other"
800+ SINK1 (self ) #$ arg1="SSA variable with_lshift, l:806 -> ControlFlowNode for self"
801801 OK ()
802802 return self
803803
@@ -811,8 +811,8 @@ def test_lshift():
811811# object.__rshift__(self, other)
812812class With_rshift :
813813 def __rshift__ (self , other ):
814- SINK2 (other )
815- SINK1 (self )
814+ SINK2 (other ) #$ arg2="ControlFlowNode for arg2, l:823 -> ControlFlowNode for other"
815+ SINK1 (self ) #$ arg1="SSA variable with_rshift, l:821 -> ControlFlowNode for self"
816816 OK ()
817817 return self
818818
@@ -826,8 +826,8 @@ def test_rshift():
826826# object.__and__(self, other)
827827class With_and :
828828 def __and__ (self , other ):
829- SINK2 (other )
830- SINK1 (self )
829+ SINK2 (other ) #$ arg2="ControlFlowNode for arg2, l:838 -> ControlFlowNode for other"
830+ SINK1 (self ) #$ arg1="SSA variable with_and, l:836 -> ControlFlowNode for self"
831831 OK ()
832832 return self
833833
@@ -841,8 +841,8 @@ def test_and():
841841# object.__xor__(self, other)
842842class With_xor :
843843 def __xor__ (self , other ):
844- SINK2 (other )
845- SINK1 (self )
844+ SINK2 (other ) #$ arg2="ControlFlowNode for arg2, l:853 -> ControlFlowNode for other"
845+ SINK1 (self ) #$ arg1="SSA variable with_xor, l:851 -> ControlFlowNode for self"
846846 OK ()
847847 return self
848848
@@ -856,8 +856,8 @@ def test_xor():
856856# object.__or__(self, other)
857857class With_or :
858858 def __or__ (self , other ):
859- SINK2 (other )
860- SINK1 (self )
859+ SINK2 (other ) #$ arg2="ControlFlowNode for arg2, l:868 -> ControlFlowNode for other"
860+ SINK1 (self ) #$ arg1="SSA variable with_or, l:866 -> ControlFlowNode for self"
861861 OK ()
862862 return self
863863
0 commit comments