use crate::block_parser::{BlocksFromCommentsParser, BlocksParser};
use crate::language_parsers;
use crate::language_parsers::CommentsParser;
pub(super) fn parser() -> anyhow::Result<impl BlocksParser> {
Ok(BlocksFromCommentsParser::new(comments_parser()?))
}
fn comments_parser() -> anyhow::Result<impl CommentsParser> {
let js_language = tree_sitter_javascript::LANGUAGE.into();
let parser =
language_parsers::c_style_and_html_comments_parser(&js_language, "comment", "html_comment");
Ok(parser)
}
#[cfg(test)]
mod tests {
use super::*;
use crate::{Position, language_parsers::Comment};
#[test]
fn parses_comments_correctly() -> anyhow::Result<()> {
let mut comments_parser = comments_parser()?;
let blocks: Vec<Comment> = comments_parser
.parse(
r#"
/**
* This is a JavaScript function demonstration with comments.
*
* @author Author name
*/
function example() {
// This is a single-line comment in JavaScript.
console.log("Hello, JavaScript!"); // Inline comment after a statement.
/*
* This is a multi-line comment.
* It also spans multiple lines.
*/
let number = 42; /* Inline multi-line comment */
}
/// Triple slash comment.
let done = 1;
<!-- html open comment
let between = 2;
--> html close comment
"#,
)
.collect();
assert_eq!(
blocks,
vec![
Comment {
position_range: Position::new(2, 13)..Position::new(6, 16),
source_range: 13..156,
comment_text: " \n This is a JavaScript function demonstration with comments.\n \n @author Author name\n ".to_string()
},
Comment {
position_range: Position::new(8, 17)..Position::new(8, 64),
source_range: 206..253,
comment_text: " This is a single-line comment in JavaScript."
.to_string()
},
Comment {
position_range: Position::new(9, 52)..Position::new(9, 88),
source_range: 305..341,
comment_text: " Inline comment after a statement.".to_string()
},
Comment {
position_range: Position::new(11, 17)..Position::new(14, 20),
source_range: 359..479,
comment_text: " \n This is a multi-line comment.\n It also spans multiple lines.\n "
.to_string()
},
Comment {
position_range: Position::new(15, 34)..Position::new(15, 65),
source_range: 513..544,
comment_text: " Inline multi-line comment ".to_string()
},
Comment {
position_range: Position::new(17, 1)..Position::new(17, 26),
source_range: 559..584,
comment_text: " / Triple slash comment.".to_string()
},
Comment {
position_range: Position::new(19, 1)..Position::new(19, 23),
source_range: 599..621,
comment_text: " html open comment".to_string()
},
Comment {
position_range: Position::new(21, 1)..Position::new(21, 23),
source_range: 639..661,
comment_text: " html close comment".to_string()
},
]
);
Ok(())
}
}