{
    "Function": "_startTempEstimateSession",
    "File": "contracts/routers/FullRouter.sol",
    "Parent Contracts": [
        "contracts/routers/StrategyRouter.sol",
        "contracts/helpers/StrategyTypes.sol",
        "contracts/interfaces/IStrategyRouter.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _startTempEstimateSession(address strategy) private {\n        /*\n          To ensure that a stale \"temp\" estimate isn't leaked into other function calls\n          by not being \"delete\"d in the same external call in which it is set, we\n          associate to each external call a \"session counter\" so that it only deals with\n          temp values corresponding to its own session.\n        **/\n\n        ++_tempEstimate[0][strategy][address(0)]; // ++counter\n    }"
}