{
    "Function": "slitherConstructorConstantVariables",
    "File": "contracts/basket/contracts/facets/Call/LibCallStorage.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "keccak256(bytes)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "library LibCallStorage {\n    bytes32 constant CALL_STORAGE_POSITION =\n        keccak256(\"diamond.standard.call.storage\");\n\n    struct CallStorage {\n        mapping(address => bool) canCall;\n        address[] callers;\n    }\n\n    function callStorage() internal pure returns (CallStorage storage cs) {\n        bytes32 position = CALL_STORAGE_POSITION;\n        assembly {\n            cs.slot := position\n        }\n    }\n}"
}