// src/languages/common.rs
usecrate::todo_extractor_internal::aggregator::CommentLine;/// A trait for parsing comments from source code.
pubtraitCommentParser{/// Parses the provided file content and returns a vector of comment lines.
fnparse_comments(file_content:&str)->Vec<CommentLine>;}