|
|
|
@ -31,7 +31,7 @@ from dataclasses import dataclass, field |
|
|
|
|
|
|
|
|
|
from slither.core.solidity_types.type import Type |
|
|
|
|
from slither.core.solidity_types import ArrayType, ElementaryType, UserDefinedType, MappingType |
|
|
|
|
from slither.core.declarations import Contract, Structure, StructureContract |
|
|
|
|
from slither.core.declarations import Contract, Structure |
|
|
|
|
from slither.core.variables.state_variable import StateVariable |
|
|
|
|
from slither.core.variables.structure_variable import StructureVariable |
|
|
|
|
|
|
|
|
@ -673,6 +673,8 @@ class SlitherReadStorage: |
|
|
|
|
|
|
|
|
|
return data |
|
|
|
|
|
|
|
|
|
# TODO: remove this exception (montyly) |
|
|
|
|
# pylint: disable=too-many-nested-blocks |
|
|
|
|
def _all_array_slots( |
|
|
|
|
self, var: StateVariable, contract: Contract, type_: Type, slot: int |
|
|
|
|
) -> Dict[str, SlotInfo]: |
|
|
|
|