{
    "Function": "_emitCommentCreated",
    "File": "contracts/libraries/PublishingLogic.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _emitCommentCreated(\n        DataTypes.CommentData memory vars,\n        uint256 pubId,\n        bytes memory collectModuleReturnData,\n        bytes memory referenceModuleReturnData\n    ) private {\n        emit Events.CommentCreated(\n            vars.profileId,\n            pubId,\n            vars.contentURI,\n            vars.profileIdPointed,\n            vars.pubIdPointed,\n            vars.collectModule,\n            collectModuleReturnData,\n            vars.referenceModule,\n            referenceModuleReturnData,\n            block.timestamp\n        );\n    }"
}