Allow reference to other SolidityVariableComposed

pull/58/head
Josselin 6 years ago
parent 3ed88b6c20
commit 5b877ddceb
  1. 2
      slither/slithir/variables/reference.py

@ -36,7 +36,7 @@ class ReferenceVariable(ChildNode, Variable):
# Member or Index operator
from slither.slithir.utils.utils import is_valid_lvalue
assert is_valid_lvalue(points_to) \
or points_to == SolidityVariableComposed('msg.data') \
or isinstance(points_to, SolidityVariableComposed) \
or isinstance(points_to, (Contract, Enum))
self._points_to = points_to

Loading…
Cancel
Save