import { Joinpoint, Comment } from "@specs-feup/clava/api/Joinpoints.js"; /** * Checks if the comment is an inline comment * @param $comment - The comment to check * @returns Returns true if it's an inline comment, otherwise returns false */ export declare function isInlineComment($comment: Comment): boolean; /** * Retrieves all comments associated with a given joinpoint * @param $jp - The joinpoint to retrieve comments from * @returns Array of comments */ export declare function getComments($jp: Joinpoint): Comment[]; /** * Checks if a given join point is a comment statement * * @param $jp The join point to check * @returns Returns true if the given join point is a comment statement, otherwise false */ export declare function isCommentStmt($jp: Joinpoint): boolean; //# sourceMappingURL=CommentUtils.d.ts.map