File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed
slither/slithir/variables Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 7
7
if TYPE_CHECKING :
8
8
from slither .core .cfg .node import Node
9
9
10
- class ReferenceVariable (ChildNode , Variable ):
11
10
11
+ class ReferenceVariable (ChildNode , Variable ):
12
12
def __init__ (self , node : "Node" , index = None ):
13
13
super ().__init__ ()
14
14
if index is None :
Original file line number Diff line number Diff line change 6
6
if TYPE_CHECKING :
7
7
from slither .core .cfg .node import Node
8
8
9
- class TemporaryVariable (ChildNode , Variable ):
10
9
10
+ class TemporaryVariable (ChildNode , Variable ):
11
11
def __init__ (self , node : "Node" , index = None ):
12
12
super ().__init__ ()
13
13
if index is None :
Original file line number Diff line number Diff line change 8
8
9
9
10
10
class TupleVariable (ChildNode , SlithIRVariable ):
11
-
12
11
def __init__ (self , node : "Node" , index = None ):
13
12
super ().__init__ ()
14
13
if index is None :
You can’t perform that action at this time.
0 commit comments