{
    "Function": "_getStorageSlot",
    "File": "contracts/global/LibStorage.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _getStorageSlot(StorageId storageId)\n        private\n        pure\n        returns (uint256 slot)\n    {\n        // This should never overflow with a reasonable `STORAGE_SLOT_EXP`\n        // because Solidity will do a range check on `storageId` during the cast.\n        return uint256(storageId) + STORAGE_SLOT_BASE;\n    }"
}