{
    "Function": "previewMint",
    "File": "src/LiquidityPool.sol",
    "Parent Contracts": [
        "src/interfaces/IERC4626.sol",
        "src/interfaces/IERC20.sol",
        "src/util/Auth.sol"
    ],
    "High-Level Calls": [
        "InvestmentManagerLike"
    ],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function previewMint(uint256 shares) external view returns (uint256 assets) {\n        assets = investmentManager.previewMint(msg.sender, address(this), shares);\n    }"
}