{
    "Function": "file",
    "File": "src/LiquidityPool.sol",
    "Parent Contracts": [
        "src/interfaces/IERC4626.sol",
        "src/interfaces/IERC20.sol",
        "src/util/Auth.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "revert(string)",
        "auth"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function file(bytes32 what, address data) public auth {\n        if (what == \"investmentManager\") investmentManager = InvestmentManagerLike(data);\n        else revert(\"LiquidityPool/file-unrecognized-param\");\n        emit File(what, data);\n    }"
}